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

body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    background: url('zodiac-background.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    min-height: 100vh;
    padding: 0;
    color: #333;
    position: relative;
    overflow-x: hidden;
}

/* Animated Background Elements */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
    animation: backgroundFloat 20s ease-in-out infinite;
}

@keyframes backgroundFloat {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-20px) scale(1.05); }
}

/* Navigation Bar */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    font-size: 1.5em;
    font-weight: bold;
    color: #2563eb;
    text-decoration: none;
    transition: color 0.3s;
}

.nav-logo:hover {
    color: #0ea5e9;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-link {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    padding: 5px 10px;
    border-radius: 5px;
}

.nav-link:hover,
.nav-link.active {
    color: #2563eb;
    background: rgba(37, 99, 235, 0.1);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

/* Hero Section */
.hero-section {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 80px 20px;
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
    z-index: 1;
    border-radius: 0 0 30px 30px;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: patternMove 20s linear infinite;
    opacity: 0.3;
}

@keyframes patternMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-text {
    color: #1e293b;
    text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.8);
}

.hero-title {
    font-size: 3.5em;
    font-weight: bold;
    margin-bottom: 20px;
    text-shadow: 2px 2px 8px rgba(255, 255, 255, 0.9), 0 0 20px rgba(255, 255, 255, 0.5);
    animation: titleGlow 3s ease-in-out infinite;
}

@keyframes titleGlow {
    0%, 100% { text-shadow: 2px 2px 8px rgba(255, 255, 255, 0.9), 0 0 20px rgba(255, 255, 255, 0.5); }
    50% { text-shadow: 2px 2px 12px rgba(255, 255, 255, 1), 0 0 30px rgba(255, 255, 255, 0.7); }
}

.hero-subtitle {
    font-size: 1.8em;
    margin-bottom: 15px;
    font-weight: 600;
}

.hero-description {
    font-size: 1.2em;
    line-height: 1.8;
    margin-bottom: 30px;
    color: #334155;
    text-shadow: 1px 1px 3px rgba(255, 255, 255, 0.8);
}

.hero-stats {
    display: flex;
    gap: 30px;
    margin-top: 30px;
}

.stat-item {
    text-align: center;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 20px;
    border-radius: 15px;
    border: 2px solid rgba(37, 99, 235, 0.3);
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.stat-number {
    font-size: 2.5em;
    font-weight: bold;
    margin-bottom: 5px;
    color: #2563eb;
}

.stat-label {
    font-size: 0.9em;
    color: #475569;
    font-weight: 600;
}

.hero-decoration {
    position: relative;
    height: 300px;
}

.floating-emoji {
    position: absolute;
    font-size: 4em;
    animation: float 6s ease-in-out infinite;
    opacity: 0.8;
}

.floating-emoji:nth-child(1) {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.floating-emoji.delay-1 {
    top: 30%;
    right: 20%;
    animation-delay: 1.5s;
}

.floating-emoji.delay-2 {
    bottom: 20%;
    left: 30%;
    animation-delay: 3s;
}

.floating-emoji.delay-3 {
    top: 50%;
    right: 10%;
    animation-delay: 4.5s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    25% {
        transform: translateY(-20px) rotate(5deg);
    }
    50% {
        transform: translateY(-40px) rotate(-5deg);
    }
    75% {
        transform: translateY(-20px) rotate(3deg);
    }
}

/* Animation Classes */
.animate-fade-in {
    animation: fadeIn 1s ease-out;
}

.animate-fade-in-delay {
    animation: fadeIn 1s ease-out 0.3s both;
}

.animate-fade-in-delay-2 {
    animation: fadeIn 1s ease-out 0.6s both;
}

.animate-fade-in-delay-3 {
    animation: fadeIn 1s ease-out 0.9s both;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

header {
    text-align: center;
    margin-bottom: 30px;
}

header h1 {
    font-size: 2.5em;
    color: #2563eb;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.subtitle {
    font-size: 1.2em;
    color: #666;
}

.game-info {
    margin-bottom: 30px;
}

.score-board {
    display: flex;
    justify-content: space-around;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.score-item {
    text-align: center;
}

.score-item .label {
    display: block;
    font-size: 0.9em;
    color: #666;
    margin-bottom: 5px;
}

.score-item span:last-child {
    display: block;
    font-size: 2em;
    font-weight: bold;
    color: #2563eb;
}

.game-area {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 30px;
}

.clue-section {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.clue-section h2 {
    color: #2563eb;
    margin-bottom: 15px;
    font-size: 1.5em;
}

.clue-display {
    background: white;
    padding: 20px;
    border-radius: 10px;
    min-height: 150px;
    margin-bottom: 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    font-size: 1.1em;
    line-height: 1.8;
}

.hint-section {
    margin-top: 15px;
}

.button-group {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.btn-next {
    background: #17a2b8;
    color: white;
}

.btn-next:hover:not(:disabled) {
    background: #138496;
    transform: translateY(-2px);
}

.hints-container {
    margin-top: 15px;
    padding: 15px;
    background: #fff3cd;
    border-radius: 10px;
    border-left: 4px solid #ffc107;
    display: none;
}

.hints-container.show {
    display: block;
}

.hints-container p {
    margin: 5px 0;
    color: #856404;
}

.zodiac-grid {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.zodiac-grid h2 {
    color: #2563eb;
    margin-bottom: 20px;
    font-size: 1.5em;
}

.zodiac-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.zodiac-card {
    background: white;
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 3px solid transparent;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.zodiac-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
    border-color: #2563eb;
}

.zodiac-card.selected {
    border-color: #2563eb;
    background: #dbeafe;
}

.zodiac-card.correct {
    border-color: #28a745;
    background: #d4edda;
    animation: correctPulse 0.5s ease;
}

.zodiac-card.wrong {
    border-color: #dc3545;
    background: #f8d7da;
    animation: wrongShake 0.5s ease;
}

.zodiac-card.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.zodiac-emoji {
    font-size: 3em;
    display: block;
    margin-bottom: 10px;
}

.zodiac-name {
    font-size: 1.2em;
    font-weight: bold;
    color: #333;
}

@keyframes correctPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

@keyframes wrongShake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-10px); }
    75% { transform: translateX(10px); }
}

.action-buttons {
    text-align: center;
    margin-bottom: 30px;
}

.btn {
    padding: 15px 30px;
    font-size: 1.1em;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: bold;
    margin: 0 10px;
}

.btn-primary {
    background: linear-gradient(135deg, #2563eb 0%, #0ea5e9 100%);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(37, 99, 235, 0.4);
}

.btn-secondary {
    background: #6c757d;
    color: white;
}

.btn-secondary:hover {
    background: #5a6268;
    transform: translateY(-2px);
}

.btn-hint {
    background: #ffc107;
    color: #333;
}

.btn-hint:hover:not(:disabled) {
    background: #e0a800;
    transform: translateY(-2px);
}

.btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    animation: fadeIn 0.3s ease;
}

.modal.show {
    display: flex;
    justify-content: center;
    align-items: center;
}

.modal-content {
    background-color: white;
    padding: 40px;
    border-radius: 20px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    position: relative;
    animation: slideUp 0.3s ease;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.modal-buttons {
    margin-top: 25px;
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
}

.modal-buttons .btn {
    min-width: 120px;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.close {
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 2em;
    font-weight: bold;
    color: #aaa;
    cursor: pointer;
    transition: color 0.3s;
}

.close:hover {
    color: #333;
}

#result-content {
    font-size: 1.3em;
    line-height: 1.8;
}

.result-correct {
    color: #28a745;
    font-size: 3em;
    margin-bottom: 20px;
}

.result-wrong {
    color: #dc3545;
    font-size: 3em;
    margin-bottom: 20px;
}

.zodiac-info {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 2px solid #e9ecef;
}

.zodiac-info h3 {
    color: #2563eb;
    margin-bottom: 20px;
    font-size: 1.5em;
}

.knowledge-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 15px;
}

.knowledge-card {
    background: white;
    padding: 15px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.knowledge-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.knowledge-emoji {
    font-size: 2em;
    margin-bottom: 8px;
}

.knowledge-name {
    font-weight: bold;
    color: #333;
    margin-bottom: 5px;
}

.knowledge-year {
    font-size: 0.9em;
    color: #666;
}

/* Page Content Styles */
.page-content {
    max-width: 900px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    line-height: 1.8;
}

.page-content h1 {
    color: #2563eb;
    margin-bottom: 20px;
    font-size: 2.5em;
}

.page-content h2 {
    color: #2563eb;
    margin-top: 30px;
    margin-bottom: 15px;
    font-size: 1.8em;
}

.page-content h3 {
    color: #0ea5e9;
    margin-top: 25px;
    margin-bottom: 12px;
    font-size: 1.4em;
}

.page-content p {
    margin-bottom: 15px;
    color: #555;
}

.page-content ul, .page-content ol {
    margin-left: 30px;
    margin-bottom: 20px;
}

.page-content li {
    margin-bottom: 10px;
    color: #555;
}

.page-content a {
    color: #2563eb;
    text-decoration: none;
    transition: color 0.3s;
}

.page-content a:hover {
    color: #0ea5e9;
    text-decoration: underline;
}

/* Section Styles */
section {
    margin: 60px 0;
    padding: 40px 0;
    position: relative;
}

.section-title {
    font-size: 2.5em;
    text-align: center;
    color: #2563eb;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 20px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #2563eb, #0ea5e9);
    border-radius: 2px;
}

.section-intro {
    text-align: center;
    font-size: 1.2em;
    color: #666;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Features Section */
.features-section {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.05) 0%, rgba(14, 165, 233, 0.05) 100%);
    border-radius: 20px;
    padding: 50px 30px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.feature-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    text-align: center;
    border: 2px solid transparent;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.3);
    border-color: #2563eb;
}

.feature-icon {
    font-size: 4em;
    margin-bottom: 20px;
    animation: iconBounce 2s ease-in-out infinite;
}

@keyframes iconBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.feature-card h3 {
    color: #2563eb;
    margin-bottom: 15px;
    font-size: 1.5em;
}

.feature-card p {
    color: #666;
    line-height: 1.6;
}

/* How to Play Section */
.how-to-play-section {
    background: white;
    border-radius: 20px;
    padding: 50px 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.step-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 25px;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    border-radius: 15px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.step-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(180deg, #2563eb, #0ea5e9);
    transform: scaleY(0);
    transition: transform 0.3s;
}

.step-item:hover::before {
    transform: scaleY(1);
}

.step-item:hover {
    transform: translateX(10px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #2563eb, #0ea5e9);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8em;
    font-weight: bold;
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(37, 99, 235, 0.4);
}

.step-content h3 {
    color: #2563eb;
    margin-bottom: 10px;
    font-size: 1.3em;
}

.step-content p {
    color: #666;
    line-height: 1.6;
}

/* Detailed Zodiac Section */
.detailed-zodiac-section {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.05) 0%, rgba(14, 165, 233, 0.05) 100%);
    border-radius: 20px;
    padding: 50px 30px;
}

.detailed-zodiac-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.detailed-zodiac-card {
    background: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    text-align: center;
    border: 3px solid transparent;
    position: relative;
    overflow: hidden;
}

.detailed-zodiac-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s;
}

.detailed-zodiac-card:hover::before {
    opacity: 1;
}

.detailed-zodiac-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.3);
    border-color: #2563eb;
}

.detailed-zodiac-emoji {
    font-size: 5em;
    margin-bottom: 15px;
    display: block;
    animation: emojiPulse 2s ease-in-out infinite;
}

@keyframes emojiPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.detailed-zodiac-name {
    font-size: 1.8em;
    font-weight: bold;
    color: #2563eb;
    margin-bottom: 10px;
}

.detailed-zodiac-order {
    color: #999;
    font-size: 1em;
    margin-bottom: 15px;
}

.detailed-zodiac-char {
    color: #666;
    font-style: italic;
    padding-top: 15px;
    border-top: 2px solid #eee;
}

/* Scoring Section */
.scoring-section {
    background: white;
    border-radius: 20px;
    padding: 50px 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.scoring-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.scoring-card {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 3px solid transparent;
}

.scoring-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.scoring-card.highlight {
    background: linear-gradient(135deg, #2563eb 0%, #0ea5e9 100%);
    color: white;
    border-color: #ffc107;
}

.scoring-card.highlight .scoring-icon,
.scoring-card.highlight h3,
.scoring-card.highlight p {
    color: white;
}

.scoring-icon {
    font-size: 3em;
    margin-bottom: 15px;
}

.scoring-card h3 {
    color: #2563eb;
    margin-bottom: 15px;
    font-size: 1.5em;
}

.scoring-card.highlight h3 {
    color: white;
}

.score-amount {
    font-size: 2em;
    font-weight: bold;
    color: #2563eb;
    margin-bottom: 10px;
}

.scoring-card.highlight .score-amount {
    color: #ffc107;
}

/* Fun Facts Section */
.fun-facts-section {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.05) 0%, rgba(14, 165, 233, 0.05) 100%);
    border-radius: 20px;
    padding: 50px 30px;
}

.facts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.fact-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border-left: 5px solid #2563eb;
    position: relative;
    overflow: hidden;
}

.fact-card::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(30px, -30px);
}

.fact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.3);
}

.fact-card h3 {
    color: #2563eb;
    margin-bottom: 15px;
    font-size: 1.4em;
}

.fact-card p {
    color: #666;
    line-height: 1.8;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #2563eb 0%, #0ea5e9 100%);
    border-radius: 20px;
    padding: 60px 30px;
    text-align: center;
    color: white;
    margin-top: 60px;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: patternMove 20s linear infinite;
    opacity: 0.3;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-section h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.cta-section p {
    font-size: 1.3em;
    margin-bottom: 30px;
    opacity: 0.95;
}

.btn-large {
    padding: 20px 50px;
    font-size: 1.3em;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.btn-large:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

@media (max-width: 768px) {
    .game-area {
        grid-template-columns: 1fr;
    }
    
    .zodiac-options {
        grid-template-columns: repeat(2, 1fr);
    }
    
    header h1 {
        font-size: 1.8em;
    }
    
    .score-board {
        flex-direction: column;
        gap: 15px;
    }
    
    .nav-menu {
        gap: 15px;
        font-size: 0.9em;
    }
    
    .nav-container {
        padding: 0 15px;
    }
    
    .page-content {
        padding: 20px;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5em;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 15px;
    }
    
    .hero-decoration {
        display: none;
    }
    
    .features-grid,
    .steps-container,
    .detailed-zodiac-grid,
    .scoring-info,
    .facts-grid {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 2em;
    }
}

/* Cookie Consent Banner */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    z-index: 10000;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: slideUp 0.5s ease-out;
}

.cookie-consent-content {
    max-width: 1200px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.cookie-consent-content p {
    flex: 1;
    margin: 0;
    color: #333;
    font-size: 0.95em;
    line-height: 1.6;
}

.cookie-consent-buttons {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.btn-cookie {
    padding: 10px 20px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.9em;
    transition: all 0.3s ease;
}

.btn-accept {
    background: linear-gradient(135deg, #2563eb 0%, #0ea5e9 100%);
    color: white;
}

.btn-accept:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.4);
}

.btn-decline {
    background: #e9ecef;
    color: #333;
}

.btn-decline:hover {
    background: #dee2e6;
    transform: translateY(-2px);
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@media (max-width: 768px) {
    .cookie-consent-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-consent-buttons {
        width: 100%;
        justify-content: center;
    }
    
    .btn-cookie {
        flex: 1;
        max-width: 150px;
    }
}

