/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: #fff;
    background-color: #1a1f3a;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: 3rem; }
h2 { font-size: 2.25rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.125rem; }
h6 { font-size: 1rem; }

p {
    margin-bottom: 1rem;
    font-size: 1rem;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border: none;
    border-radius: 50px;
    font-family: 'Nunito', sans-serif;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn--primary {
    background: linear-gradient(90deg, #ffd700 0%, #ffaa00 100%);
    color: #1a1f3a;
    box-shadow: 0 4px 20px rgba(255, 215, 0, 0.4);
}

.btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(255, 215, 0, 0.6);
}

.btn--secondary {
    background: transparent;
    color: #ffd700;
    border: 2px solid #ffd700;
}

.btn--secondary:hover {
    background: #ffd700;
    color: #1a1f3a;
    transform: translateY(-2px);
}

.btn--large {
    padding: 16px 40px;
    font-size: 18px;
}

/* Header */
.header {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(26, 31, 58, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
}

.header.scrolled {
    background: rgba(26, 31, 58, 0.98);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 15px;
    min-height: 70px;
}

.nav__logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav__logo img {
    width: 40px;
    height: 40px;
}

.nav__title {
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    color: #ffd700;
}

.nav__actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* Language Switcher */
.language-switcher {
    position: relative;
}

.language-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    padding: 8px 16px;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
}

.language-btn:hover {
    background: rgba(255, 255, 255, 0.2);
}

.language-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: #1a1f3a;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1001;
}

.language-dropdown.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.language-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    color: #fff;
    text-decoration: none;
    transition: background 0.3s ease;
    border-bottom: 1px solid #f0f0f0;
}

.language-option:last-child {
    border-bottom: none;
}

.language-option:hover {
    background: rgba(255,255,255,.15);
}

.language-option .flag {
    font-size: 18px;
}

.nav__cta {
    display: flex;
    gap: 12px;
}

.nav__toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.nav__toggle span {
    width: 25px;
    height: 3px;
    background: #fff;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero__background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

.hero__background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    
}

.hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 31, 58, 0.8) 0%, rgba(107, 45, 92, 0.6) 100%);
    z-index: 1;
}

.hero__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero__text {
    animation: fadeInUp 1s ease 0.3s both;
}

.hero__title {
    font-size: 4rem;
    color: #ffd700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero__subtitle {
    font-size: 1.25rem;
    color: #fff;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero__actions {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.hero__image {
    animation: fadeInRight 1s ease 0.6s both;
    position: relative;
}

.hero__chicken {
    width: 100%;
    height: auto;
    animation: bounce 2s ease-in-out infinite;
    overflow: hidden;
    border-radius: 10px;
}

/* Animated Coins */
.hero__coins {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.coin {
    position: absolute;
    color: #ffd700;
    font-size: 2rem;
    font-weight: bold;
    animation: fall 3s linear infinite;
    opacity: 0.8;
}

.coin--1 { left: 10%; animation-delay: 0s; }
.coin--2 { left: 20%; animation-delay: 0.5s; }
.coin--3 { left: 30%; animation-delay: 1s; }
.coin--4 { left: 70%; animation-delay: 1.5s; }
.coin--5 { left: 80%; animation-delay: 2s; }

/* Intro Section */
.intro {
    padding: 80px 0;
    background: rgba(255,255,255,.15);
}

.intro__content {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 60px;
    align-items: center;
}

.intro__image img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.intro__text {
    max-width: 600px;
}

.intro__text p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #fff;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

@keyframes fall {
    0% {
        transform: translateY(-100vh) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(100vh) rotate(360deg);
        opacity: 0;
    }
}

/* Utility Classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

/* Loading Animation */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Section Styles */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.section-image {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

.section-title {
    font-size: 2.5rem;
    color: #ffd700;
    margin-bottom: 1rem;
    position: relative;
    text-align: center;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #ffd700, #ffaa00);
    border-radius: 2px;
}

/* Game Features Section */
.game-features {
    padding: 80px 0;
    background: #1a1f3a;
}

.features-table {
    background: #1a1f3a;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    max-width: 800px;
    margin: 0 auto;
}

.feature-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 30px;
    border-bottom: 1px solid #f0f0f0;
    transition: background 0.3s ease;
}

.feature-row:last-child {
    border-bottom: none;
}

.feature-row:hover {
    background: rgba(255,255,255,.15);
}

.feature-row.highlight {
    background: #ffd9001f;
}

.feature-label {
    font-weight: 600;
    color: #fff;
    font-size: 1.1rem;
}

.feature-value {
    font-weight: 700;
    color: #ffd700;
    font-size: 1.1rem;
}

/* Symbols Section */
.symbols {
    padding: 80px 0;
    background: rgba(255,255,255,.05);
}

.symbols-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.symbol-card {
    background: #1a1f3a;
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.symbol-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: #ddd;
}

.symbol-card.premium::before {
    background: linear-gradient(90deg, #ffd700, #ffaa00);
}

.symbol-card.medium::before {
    background: linear-gradient(90deg, #c0c0c0, #a0a0a0);
}

.symbol-card.low::before {
    background: linear-gradient(90deg, #cd7f32, #b8860b);
}

.symbol-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.symbol-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #ffd700;
}

.symbol-icon i {
    font-size: inherit;
}

.symbol-name {
    font-size: 1.5rem;
    color: #ffd700;
    margin-bottom: 1.5rem;
}

.payout-table {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.payout-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
}

.payout-row:last-child {
    border-bottom: none;
}

.payout-value {
    font-weight: 700;
    color: #ffd700;
    font-size: 1.2rem;
}

/* Special Symbols Section */
.special-symbols {
    padding: 80px 0;
    background: #1a1f3a;
}

.special-symbols-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    margin-top: 3rem;
}

.special-symbol-card {
    background: rgba(255,255,255,.1);
    border-radius: 16px;
    padding: 40px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.special-symbol-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    border-color: #ffd700;
}

.special-symbol-card .symbol-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    color: #ffd700;
}

.special-symbol-card .symbol-icon i {
    font-size: inherit;
}

.special-symbol-card h3 {
    font-size: 1.5rem;
    color: #ffd700;
    margin-bottom: 1rem;
}

.special-symbol-card p {
    color: #eee;
    line-height: 1.6;
}

/* Bonus Features Section */
.bonus-features {
    padding: 80px 0;
    background: rgba(255,255,255,.05);
}

.bonus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    margin-top: 3rem;
}

.bonus-card {
    background: #1a1f3a;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.bonus-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.bonus-card img {
    width: 100%;
    height: auto;
    
}

.bonus-card h3 {
    padding: 20px 30px 10px;
    font-size: 1.5rem;
    color: #ffd700;
}

.bonus-card p {
    padding: 0 30px 30px;
    color: #eee;
    line-height: 1.6;
}

/* How to Play Section */
.how-to-play {
    padding: 80px 0;
    background: #1a1f3a;
}

.steps-container {
    max-width: 800px;
    margin: 0 auto;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    margin-bottom: 40px;
    padding: 30px;
    background: rgba(255,255,255,.15);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.step:hover {
    background: rgba(255,255,255,.2);
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ffd700, #ffaa00);
    color: #1a1f3a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 1.5rem;
    color: #ffd700;
    margin-bottom: 1rem;
}

.step-content p {
    color: #eee;
    line-height: 1.6;
}

/* Strategies Section */
.strategies {
    padding: 80px 0;
    background: rgba(255,255,255,.05);
}

.strategy-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
    background: #1a1f3a;
    border-radius: 50px;
    padding: 5px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 40px;
}

.tab-btn {
    flex: 1;
    padding: 15px 30px;
    border: none;
    background: transparent;
    color: #eee;
    font-weight: 600;
    border-radius: 45px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tab-btn.active {
    background: linear-gradient(135deg, #ffd700, #ffaa00);
    color: #1a1f3a;
}

.tab-content {
    max-width: 800px;
    margin: 0 auto;
}

.tab-panel {
    display: none;
}

.tab-panel.active {
    display: block;
}

.strategy-accordion {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.accordion-item {
    background: #1a1f3a;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.accordion-header {
    width: 100%;
    padding: 25px 30px;
    border: none;
    background: #1a1f3a;
    text-align: left;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffd700;
    transition: all 0.3s ease;
}

.accordion-header:hover {
    background: rgba(255,255,255,.15);
}

.accordion-header i:first-child {
    color: #ffd700;
    font-size: 1.2rem;
}

.accordion-header i:last-child {
    margin-left: auto;
    transition: transform 0.3s ease;
}

.accordion-item.active .accordion-header i:last-child {
    transform: rotate(180deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.accordion-item.active .accordion-content {
    max-height: 200px;
}

.accordion-content p {
    padding: 30px 25px;
    color: #eee;
    line-height: 1.6;
}

.accordion-item.active .accordion-header {
    background: rgba(255,255,255,.2);
}

/* Reviews Section */
.reviews {
    padding: 80px 0;
    background: #1a1f3a;
}

.reviews-carousel {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.review-card {
    background: rgba(255,255,255,.1);
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.review-card::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 4rem;
    color: #ffd700;
    font-family: serif;
}

.review-rating {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #ffd700;
    display: flex;
    gap: 5px;
    justify-content: center;
    align-items: center;
}

.review-text {
    color: #eee;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.review-author {
    font-weight: 600;
    color: #ffd700;
}

/* Pros and Cons Section */
.pros-cons {
    padding: 80px 0;
    background: rgba(255,255,255,.15);
    position: relative;
}

.section-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

.section-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: -1;
}

.pros-cons .section-title {
    color: #fff;
    text-align: center;
    margin-bottom: 3rem;
}

.pros-cons-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 800px;
    margin: 0 auto;
}

.pros-column,
.cons-column {
    background: rgba(26, 31, 58, 0.5);
    border-radius: 16px;
    padding: 30px;
    backdrop-filter: blur(10px);
}

.pros-title {
    color: #28a745;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.cons-title {
    color: #dc3545;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.pros-list,
.cons-list {
    list-style: none;
    padding: 0;
}

.pros-list li,
.cons-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
}

.pros-list li:last-child,
.cons-list li:last-child {
    border-bottom: none;
}

.pros-list i {
    color: #28a745;
    font-size: 1.2rem;
}

.cons-list i {
    color: #dc3545;
    font-size: 1.2rem;
}

/* FAQ Section */
.faq {
    padding: 80px 0;
    background: rgba(255,255,255,.05);
}

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
    margin-top: 2rem;
}

.faq-item {
    background: #1a1f3a;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
    overflow: hidden;
}

.faq-item.active .faq-question {
    background: rgba(255,255,255,.2);
}

.faq-question {
    width: 100%;
    padding: 25px 30px;
    border: none;
    background: #1a1f3a;
    text-align: left;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffd700;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(255,255,255,.15);
}

.faq-question i {
    color: #ffd700;
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding: 30px 25px;
    color: #eee;
    line-height: 1.6;
}

/* Final CTA Section */
.final-cta {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.cta-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

.cta-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 31, 58, 0.8) 0%, rgba(107, 45, 92, 0.6) 100%);
    z-index: 1;
}

.cta-content {
    text-align: center;
    color: #fff;
    position: relative;
    z-index: 1;
}

.cta-title {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #ffd700;
}

.cta-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.cta-feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.cta-feature i {
    font-size: 2rem;
    color: #ffd700;
}

.cta-feature span {
    font-weight: 600;
    font-size: 1.1rem;
}

.cta-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Footer */
.footer {
    background: #1a1f3a;
    color: #fff;
    padding: 40px 0 20px;
}

.footer__content {
    text-align: center;
}

.footer__logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 2rem;
}

.footer__title {
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    color: #ffd700;
}

.footer__links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.footer__links a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer__links a:hover {
    color: #ffd700;
}

.footer__disclaimer {
    max-width: 800px;
    margin: 0 auto 2rem;
    font-size: 0.9rem;
    line-height: 1.6;
    color: #ccc;
}

.footer__copyright {
    border-top: 1px solid #333;
    padding-top: 20px;
    color: #999;
    font-size: 0.9rem;
}
