/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Arial', sans-serif;
    background: linear-gradient(135deg, #1a0d2e 0%, #2d1554 100%);
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Age Warning Banner */
.age-warning {
    background: rgba(255, 0, 0, 0.9);
    color: white;
    text-align: center;
    padding: 10px 0;
    position: relative;
    z-index: 1000;
}

.age-warning .container {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: unset;
}

.close-btn {
    background: none;
    border: none;
    color: white;
    font-size: 20px;
    position: absolute;
    right: 0;
    top: calc(50% - 16.6px);
    cursor: pointer;
    padding: 5px 10px;
}

/* Header */
.header {
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(26, 13, 46, 0.95);
    backdrop-filter: blur(10px);
    z-index: 999;
    transition: all 0.3s ease;
}

.header.scrolled {
    background: rgba(26, 13, 46, 0.98);
    box-shadow: 0 2px 20px rgba(255, 107, 157, 0.3);
}

.header .container {
    max-width: unset;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo img {
    height: 40px;
    width: auto;
    transition: transform 0.3s ease;
}

.logo img:hover {
    transform: scale(1.05);
}

.nav.active {
    display: block;
}

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

.nav-link {
    color: #cccccc;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #ff6b9d;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #ff6b9d;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.header-cta .btn {
    padding: 12px 24px;
    font-size: 14px;
    font-weight: bold;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #ff6b9d;
    margin: 3px 0;
    transition: 0.3s;
}

/* Brasil Gaming Banner */
.brasil-banner {
    background: linear-gradient(90deg, #00ff00 0%, #ffff00 50%, #00ff00 100%);
    color: #000;
    text-align: center;
    padding: 15px 0;
    font-weight: bold;
}

.brasil-banner i {
    margin-right: 8px;
}

/* Game Description & Stats Section */
.game-description {
    background: linear-gradient(135deg, rgba(26, 13, 46, 0.9) 0%, rgba(45, 21, 84, 0.9) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.game-description::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23ff6b9d" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="%23ffd700" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="%234a90e2" opacity="0.1"/><circle cx="10" cy="60" r="0.5" fill="%238a2be2" opacity="0.1"/><circle cx="90" cy="40" r="0.5" fill="%23ff8c00" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
    z-index: 1;
}

.description-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.game-description-text {
    font-size: 1.3rem;
    line-height: 1.8;
    color: #cccccc;
    margin-bottom: 60px;
    font-weight: 300;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.game-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.stat-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 30px 20px;
    text-align: center;
    border: 1px solid rgba(255, 107, 157, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 157, 0.1), transparent);
    transition: left 0.5s ease;
}

.stat-card:hover::before {
    left: 100%;
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 107, 157, 0.3);
    border-color: rgba(255, 107, 157, 0.5);
}

.stat-icon {
    font-size: 3rem;
    color: #ff6b9d;
    margin-bottom: 20px;
    display: block;
    transition: all 0.3s ease;
}

.stat-card:hover .stat-icon {
    color: #ffd700;
    transform: scale(1.1);
}

.stat-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.stat-value {
    font-size: 2.5rem;
    font-weight: bold;
    color: #ffd700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: #cccccc;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.hero:before {
    background: rgba(26, 13, 46, 0.8);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 20px;
    background: linear-gradient(45deg, #ff6b9d, #ffd700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.hero-date {
    font-size: 1.2rem;
    color: #ffd700;
    margin-bottom: 20px;
    font-weight: 600;
}


.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    font-size: 14px;
}

.btn-primary {
    background: linear-gradient(45deg, #ff6b9d, #ff8c00);
    color: white;
    box-shadow: 0 4px 15px rgba(255, 107, 157, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 157, 0.6);
}

.btn-secondary {
    background: transparent;
    color: #ff6b9d;
    border-color: #ff6b9d;
}

.btn-secondary:hover {
    background: #ff6b9d;
    color: white;
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: #4a90e2;
    border-color: #4a90e2;
}

.btn-outline:hover {
    background: #4a90e2;
    color: white;
}

.btn-large {
    padding: 18px 36px;
    font-size: 16px;
}

/* Sections */
section {
    padding: 80px 0;
}

h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 40px;
    color: #ff6b9d;
    position: relative;
}

h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(45deg, #ff6b9d, #ffd700);
    border-radius: 2px;
}

/* Mecânica Section */
.mecanica {
    background: rgba(45, 21, 84, 0.3);
}

.mecanica-image {
    text-align: center;
    margin: 40px 0;
}

.mecanica-image img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(255, 107, 157, 0.3);
    transition: transform 0.3s ease;
}

.mecanica-image img:hover {
    transform: scale(1.02);
}

.cards-table {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    overflow: hidden;
    margin: 40px 0;
    backdrop-filter: blur(10px);
}

.table-header {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    background: rgba(255, 107, 157, 0.2);
    padding: 20px;
    font-weight: bold;
    color: #ffd700;
}

.table-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    padding: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: background 0.3s ease;
}

.table-row:hover {
    background: rgba(255, 107, 157, 0.1);
}

.table-row:last-child {
    border-bottom: none;
}

.card-type {
    display: inline-block;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
}

.card-type.common {
    background: #4a90e2;
    color: white;
}

.card-type.rare {
    background: #8a2be2;
    color: white;
}

.card-type.legendary {
    background: #ff8c00;
    color: white;
}

.card-type.coin {
    background: #ffd700;
    color: #000;
}

.mecanica-note {
    text-align: center;
    font-style: italic;
    color: #cccccc;
    margin: 30px 0;
}

.mecanica-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Companheiras Section */
.companheiras-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.companheira-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid transparent;
}

.companheira-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 107, 157, 0.3);
}

.companheira-card.azul {
    border-color: #4a90e2;
}

.companheira-card.roxa {
    border-color: #8a2be2;
}

.companheira-card.dourada {
    border-color: #ff8c00;
}

.companheira-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.companheira-card h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #ffd700;
}

.companheira-type {
    color: #ff6b9d;
    font-weight: bold;
    margin-bottom: 15px;
}

.volatilidade-table {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    overflow: hidden;
    margin: 40px 0;
    backdrop-filter: blur(10px);
}

.color-indicator {
    font-weight: bold;
}

/* Poeira Section */
.poeira {
    background: rgba(45, 21, 84, 0.3);
}

.poeira-image {
    text-align: center;
    margin: 40px 0;
}

.poeira-image img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(255, 107, 157, 0.3);
    transition: transform 0.3s ease;
}

.poeira-image img:hover {
    transform: scale(1.02);
}

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

.poeira-item {
    text-align: center;
    padding: 30px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.poeira-icon {
    font-size: 3rem;
    color: #ff6b9d;
    margin-bottom: 20px;
}

.poeira-item h3 {
    color: #ffd700;
    margin-bottom: 15px;
}

.poeira-progress {
    margin-top: 40px;
    text-align: center;
}

.progress-bar {
    width: 100%;
    height: 20px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    overflow: hidden;
    margin: 20px 0;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #ff6b9d, #ffd700);
    width: 65%;
    border-radius: 10px;
    animation: progressAnimation 2s ease-in-out;
}

@keyframes progressAnimation {
    from { width: 0%; }
    to { width: 65%; }
}

.progress-text {
    color: #cccccc;
    font-style: italic;
}

/* Biografias Section */
.biografia-table {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    overflow: hidden;
    margin: 40px 0;
    backdrop-filter: blur(10px);
}

.biografia-note {
    text-align: center;
    font-style: italic;
    color: #cccccc;
    margin: 30px 0;
}

.biografia-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Estratégias Section */
.estrategias {
    background: rgba(45, 21, 84, 0.3);
}

.estrategias-list {
    max-width: 800px;
    margin: 0 auto;
}

.estrategia-item {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease;
}

.estrategia-item:hover {
    transform: translateX(10px);
}

.estrategia-number {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #ff6b9d, #ffd700);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    color: white;
}

.estrategia-content h3 {
    color: #ffd700;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.estrategia-content ul {
    list-style: none;
    padding-left: 0;
}

.estrategia-content li {
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.estrategia-content li::before {
    content: '•';
    color: #ff6b9d;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Atmosfera Section */
.atmosfera {
    background: rgba(45, 21, 84, 0.3);
}

.atmosfera-images {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.atmosfera-image {
    text-align: center;
}

.atmosfera-image img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(255, 107, 157, 0.3);
    transition: transform 0.3s ease;
}

.atmosfera-image img:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(255, 107, 157, 0.5);
}

.atmosfera p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    line-height: 1.8;
}

.atmosfera a {
    color: #4a90e2;
    text-decoration: none;
}

.atmosfera a:hover {
    color: #ff6b9d;
    text-decoration: underline;
}

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

.testimonial {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    text-align: center;
    border-left: 4px solid #ff6b9d;
}

.stars {
    color: #ffd700;
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.testimonial p {
    font-style: italic;
    color: #cccccc;
}

/* FAQ Section */
.faq {
    background: rgba(45, 21, 84, 0.3);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.faq-question {
    width: 100%;
    padding: 25px;
    background: none;
    border: none;
    color: white;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.1rem;
    font-weight: 500;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: rgba(255, 107, 157, 0.2);
}

.faq-question i {
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.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: 0 25px 25px;
    color: #cccccc;
    line-height: 1.6;
}

/* Disclaimer Section */
.disclaimer {
    text-align: center;
    background: rgba(255, 0, 0, 0.1);
    border: 2px solid rgba(255, 0, 0, 0.3);
}

.disclaimer h2 {
    font-size: 4rem;
    color: #ff0000;
    margin-bottom: 20px;
}

.disclaimer p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.disclaimer-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Footer */
.footer {
    background: rgba(0, 0, 0, 0.5);
    padding: 40px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.footer-section h3,
.footer-section h4 {
    color: #ff6b9d;
    margin-bottom: 15px;
}

.footer-section p {
    color: #cccccc;
    line-height: 1.6;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #cccccc;
}

/* Responsibility Banner */
.responsibility-banner {
    background: #333;
    color: white;
    text-align: center;
    padding: 15px 0;
    font-size: 14px;
}

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    transition: all 0.3s ease;
}

.sticky-cta.visible {
    opacity: 1;
    transform: translateY(0);
}

.sticky-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(45deg, #ff6b9d, #ff8c00);
    color: white;
    padding: 15px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    box-shadow: 0 4px 15px rgba(255, 107, 157, 0.4);
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.sticky-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(255, 107, 157, 0.6);
}

@keyframes pulse {
    0% { box-shadow: 0 4px 15px rgba(255, 107, 157, 0.4); }
    50% { box-shadow: 0 4px 25px rgba(255, 107, 157, 0.8); }
    100% { box-shadow: 0 4px 15px rgba(255, 107, 157, 0.4); }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero h1 {
        font-size: 3rem;
    }
    
    .hero-stats {
        gap: 30px;
    }
    
    .stat-value {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(26, 13, 46, 0.98);
        padding: 20px 0;
        z-index: 998;
    }

    .nav-list {
        flex-direction: column;
        gap: 10px;
        align-items: center;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
    
    .table-header,
    .table-row {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .table-header .col,
    .table-row .col {
        padding: 10px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .companheiras-grid {
        grid-template-columns: 1fr;
    }
    
    .estrategia-item {
        flex-direction: column;
        text-align: center;
    }
    
    .estrategia-number {
        align-self: center;
    }
    
    .testimonials {
        grid-template-columns: 1fr;
    }
    
    .atmosfera-images {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .atmosfera-images .atmosfera-image:first-child {
        order: 1;
    }
    
    .atmosfera-images .atmosfera-image:nth-child(2) {
        order: 2;
    }
    
    .atmosfera-images .atmosfera-image:nth-child(3) {
        order: 3;
    }
    
    .game-description-text {
        font-size: 1.1rem;
        margin-bottom: 40px;
    }
    
    .game-stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .stat-card {
        padding: 25px 15px;
    }
    
    .stat-value {
        font-size: 2rem;
    }
    
    .disclaimer h2 {
        font-size: 3rem;
    }
    
    .sticky-cta {
        bottom: 10px;
        right: 10px;
    }
    
    .sticky-btn {
        padding: 12px 16px;
        font-size: 14px;
    }
    
    .sticky-btn span {
        display: none;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero-date {
        font-size: 1rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    section {
        padding: 60px 0;
    }
    
    .btn {
        padding: 12px 24px;
        font-size: 13px;
    }
    
    .btn-large {
        padding: 15px 30px;
        font-size: 14px;
    }
    
    .mecanica-image img,
    .poeira-image img,
    .atmosfera-image img {
        border-radius: 10px;
    }
    
    .game-description-text {
        font-size: 1rem;
        margin-bottom: 30px;
    }
    
    .stat-card {
        padding: 20px 10px;
    }
    
    .stat-value {
        font-size: 1.8rem;
    }
    
    .stat-icon {
        font-size: 2.5rem;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeInUp 0.6s ease-out;
}

/* Scroll animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Image loading animations */
img {
    opacity: 0;
    transition: opacity 0.3s ease;
}

img.loaded {
    opacity: 1;
}
