/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #f4f4f9;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Header */
header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 1.5rem 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

header h1 {
    font-size: 2rem;
    margin-bottom: 0.25rem;
}

header .tagline {
    font-size: 1rem;
    opacity: 0.9;
    margin-bottom: 1rem;
}

/* Navigation */
nav {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
    margin-top: 1rem;
}

nav a {
    color: white;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    transition: background 0.3s;
}

nav a:hover, nav a.active {
    background: rgba(255,255,255,0.2);
}

.lang-selector {
    margin-left: auto;
}

.lang-selector select {
    padding: 0.5rem;
    border-radius: 5px;
    border: none;
    font-size: 0.9rem;
    cursor: pointer;
}

/* Main Content */
main {
    padding: 2rem 0;
}

/* Hero Section */
.hero {
    text-align: center;
    margin-bottom: 3rem;
}

.alert-banner {
    background: #ff4444;
    color: white;
    padding: 1rem;
    border-radius: 10px;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

.intro {
    font-size: 1.2rem;
    color: #555;
    max-width: 800px;
    margin: 0 auto;
}

/* Prediction Cards */
.predictions {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.prediction-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.prediction-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.prediction-card.putin {
    border-left: 5px solid #c9302c;
}

.prediction-card.trump {
    border-left: 5px solid #286090;
}

.prediction-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.prediction-details {
    margin-bottom: 1.5rem;
}

.prediction-details p {
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.status-alert {
    background: #fff3cd;
    padding: 0.75rem;
    border-radius: 5px;
    border-left: 4px solid #ffc107;
    margin-top: 1rem;
    font-weight: bold;
}

.analysis h4 {
    margin-bottom: 0.5rem;
    color: #667eea;
}

.analysis ul {
    padding-left: 1.5rem;
}

.analysis li {
    margin-bottom: 0.5rem;
}

/* Prophets Section */
.prophets {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    margin-bottom: 3rem;
}

.prophets h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #667eea;
}

.prophet-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.prophet-item {
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 10px;
    text-align: center;
}

.prophet-item h4 {
    color: #764ba2;
    margin-bottom: 0.5rem;
}

/* CTA Sections */
.cta {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    margin-bottom: 2rem;
}

.cta h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.cta p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

/* Buttons */
.btn-primary, .btn-download {
    display: inline-block;
    background: white;
    color: #667eea;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    transition: transform 0.3s, box-shadow 0.3s;
}

.btn-primary:hover, .btn-download:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.btn-download {
    background: #28a745;
    color: white;
    font-size: 1.2rem;
}

/* Book Page */
.book-hero {
    text-align: center;
    margin-bottom: 2rem;
}

.book-hero h2 {
    font-size: 2.5rem;
    color: #667eea;
    margin-bottom: 0.5rem;
}

.book-hero .subtitle {
    font-size: 1.3rem;
    color: #c9302c;
    font-weight: bold;
    margin-bottom: 1rem;
}

.book-description {
    font-size: 1.1rem;
    color: #555;
    max-width: 800px;
    margin: 0 auto;
}

.book-details {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
}

.book-info h3 {
    font-size: 1.8rem;
    color: #667eea;
    margin-bottom: 1rem;
}

.book-contents {
    list-style: none;
    padding: 0;
}

.book-contents li {
    padding: 0.75rem;
    margin-bottom: 0.5rem;
    background: #f8f9fa;
    border-radius: 5px;
    border-left: 4px solid #667eea;
}

.book-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.stat-box {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
}

.stat-box h4 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.download-section {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    text-align: center;
    margin-bottom: 2rem;
}

.download-section h3 {
    font-size: 2rem;
    color: #667eea;
    margin-bottom: 0.5rem;
}

.download-section .note {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: #777;
}

.book-preview {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
}

.book-preview h3 {
    font-size: 1.8rem;
    color: #667eea;
    margin-bottom: 1.5rem;
}

.section-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.section-card {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid #764ba2;
}

.section-card h4 {
    color: #667eea;
    margin-bottom: 0.5rem;
}

/* About Page */
.about-hero {
    text-align: center;
    margin-bottom: 2rem;
}

.about-hero h2 {
    font-size: 2.5rem;
    color: #667eea;
    margin-bottom: 0.5rem;
}

.about-hero .subtitle {
    font-size: 1.3rem;
    color: #764ba2;
    font-weight: bold;
}

.about-content {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
}

.about-text h3 {
    font-size: 1.6rem;
    color: #667eea;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.about-text h3:first-child {
    margin-top: 0;
}

.about-text p {
    margin-bottom: 1rem;
    line-height: 1.8;
}

.about-text ul {
    margin-bottom: 1rem;
    padding-left: 2rem;
}

.about-text li {
    margin-bottom: 0.5rem;
}

/* Footer */
footer {
    background: #2c3e50;
    color: white;
    text-align: center;
    padding: 2rem 0;
    margin-top: 3rem;
}

footer p {
    margin: 0.25rem 0;
}

/* Responsive */
@media (max-width: 768px) {
    header h1 {
        font-size: 1.5rem;
    }
    
    nav {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .lang-selector {
        margin-left: 0;
    }
    
    .alert-banner {
        font-size: 1rem;
    }
    
    .prediction-card h3 {
        font-size: 1.5rem;
    }
    
    .book-hero h2, .about-hero h2 {
        font-size: 2rem;
    }
}


/* Ceremonial Glyph */
.glyph-section {
    text-align: center;
    margin: 2rem 0;
    padding: 2rem 0;
}

.ceremonial-glyph {
    max-width: 400px;
    width: 100%;
    height: auto;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.ceremonial-glyph:hover {
    opacity: 1;
}

/* Philosophy Section */
.philosophy {
    margin: 2rem 0;
}

.philosophy-card {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    border-left: 4px solid #667eea;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.philosophy-card h3 {
    color: #667eea;
    margin-bottom: 1rem;
}

/* Choice Box */
.choice-box {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: white;
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 1rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.choice-box h4 {
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.choice-box em {
    display: block;
    margin-top: 1rem;
    font-style: italic;
    opacity: 0.95;
}

/* Message Section */
.message {
    margin: 3rem 0;
}

.message-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.2);
    text-align: center;
}

.message-card h3 {
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.message-card p {
    font-size: 1.1rem;
    line-height: 1.8;
}

/* Prophet Grid */
.prophet-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.prophet-item {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    border-top: 3px solid #667eea;
}

.prophet-item h4 {
    color: #667eea;
    margin-bottom: 0.5rem;
}

/* Footer Philosophy */
.philosophy-footer {
    margin-top: 1rem;
    font-size: 1.1rem;
    color: #667eea;
}

/* Responsive */
@media (max-width: 768px) {
    .ceremonial-glyph {
        max-width: 300px;
    }
    
    .prophet-grid {
        grid-template-columns: 1fr;
    }
}
