/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'IM Fell English', serif;
    line-height: 1.6;
    color: #e8e3d3;
    background: #0a0a0a;
    overflow-x: hidden;
}

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

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #1a1a1a;
}

::-webkit-scrollbar-thumb {
    background: #D28117;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #E6941F;
}

/* Header and Navigation */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(15px);
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(210, 129, 23, 0.4);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.8);
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-img {
    height: 50px;
    width: auto;
    filter: drop-shadow(0 0 10px rgba(210, 129, 23, 0.5));
}

.nav-logo h1 {
    font-family: 'Uncial Antiqua', serif;
    font-size: 2rem;
    font-weight: 400;
    color: #D28117;
    text-shadow: 0 0 20px rgba(210, 129, 23, 0.5);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-menu a {
    text-decoration: none;
    color: #e8e3d3;
    font-weight: 400;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #D28117, #E6941F);
    transition: width 0.3s ease;
}

.nav-menu a:hover {
    color: #E6941F;
    text-shadow: 0 0 10px rgba(230, 148, 31, 0.5);
}

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

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: #D28117;
    margin: 3px 0;
    transition: 0.3s;
    box-shadow: 0 0 5px rgba(210, 129, 23, 0.5);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: 
        linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.4)),
        url('Images/loginbackground.jpg') center/cover,
        linear-gradient(135deg, #0a0a0a 0%, #2d1810 50%, #0a0a0a 100%);
    color: #e8e3d3;
    text-align: center;
    padding-top: 80px;
    position: relative;
    overflow: hidden;
}

#mystical-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.hero-fog-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 20% 50%, rgba(210, 129, 23, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(230, 148, 31, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 40% 80%, rgba(139, 69, 19, 0.1) 0%, transparent 50%);
    animation: mysticalFog 20s ease-in-out infinite;
}

@keyframes mysticalFog {
    0%, 100% { opacity: 0.3; transform: translateX(0) scale(1); }
    33% { opacity: 0.6; transform: translateX(-10px) scale(1.1); }
    66% { opacity: 0.4; transform: translateX(10px) scale(0.9); }
}

.hero-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 3;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    animation: bounce 2s infinite;
}

.scroll-arrow {
    width: 24px;
    height: 24px;
    border-right: 2px solid #E6941F;
    border-bottom: 2px solid #E6941F;
    transform: rotate(45deg);
    filter: drop-shadow(0 0 10px rgba(230, 148, 31, 0.5));
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

.hero-title {
    font-family: 'Uncial Antiqua', serif;
    font-size: 4rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
    opacity: 0;
    animation: fadeInUp 1.5s ease forwards;
    text-shadow: 
        0 0 20px rgba(210, 129, 23, 0.8),
        0 0 40px rgba(210, 129, 23, 0.4),
        2px 2px 4px rgba(0, 0, 0, 0.8);
    color: #E6941F;
}

.hero-subtitle {
    font-size: 1.4rem;
    margin-bottom: 2.5rem;
    opacity: 0;
    animation: fadeInUp 1.5s ease 0.3s forwards;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeInUp 1.5s ease 0.6s forwards;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 15px 35px;
    border: none;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 400;
    font-size: 1.1rem;
    transition: all 0.4s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, #D28117, #E6941F);
    color: #0a0a0a;
    border: 2px solid #D28117;
    box-shadow: 
        0 0 20px rgba(210, 129, 23, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #E6941F, #F4A73B);
    transform: translateY(-3px);
    box-shadow: 
        0 10px 30px rgba(210, 129, 23, 0.4),
        0 0 30px rgba(230, 148, 31, 0.6),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.btn-secondary {
    background: transparent;
    color: #e8e3d3;
    border: 2px solid #D28117;
    box-shadow: 0 0 20px rgba(210, 129, 23, 0.2);
}

.btn-secondary:hover {
    background: rgba(210, 129, 23, 0.2);
    color: #E6941F;
    transform: translateY(-3px);
    box-shadow: 
        0 10px 30px rgba(210, 129, 23, 0.3),
        0 0 30px rgba(210, 129, 23, 0.4);
}

/* Sections */
section {
    padding: 6rem 0;
}

.heritage {
    background: 
        linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)),
        radial-gradient(ellipse at center, #2d1810 0%, #0a0a0a 70%);
    position: relative;
}

.heritage::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="fog" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%23D28117" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23fog)"/></svg>');
    opacity: 0.3;
    animation: driftFog 30s linear infinite;
}

@keyframes driftFog {
    0% { transform: translateX(0) translateY(0); }
    100% { transform: translateX(-20px) translateY(-20px); }
}

.heritage h2,
.discovery h2,
.contact h2 {
    text-align: center;
    font-family: 'Uncial Antiqua', serif;
    font-size: 3rem;
    margin-bottom: 4rem;
    color: #E6941F;
    text-shadow: 
        0 0 20px rgba(230, 148, 31, 0.6),
        0 0 40px rgba(210, 129, 23, 0.3);
    position: relative;
    z-index: 2;
}

.app-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.app-info {
    text-align: center;
}

.app-logo-large {
    margin-bottom: 2rem;
}

.main-logo {
    width: 120px;
    height: auto;
    filter: drop-shadow(0 0 20px rgba(210, 129, 23, 0.6));
    animation: logoGlow 3s ease-in-out infinite;
}

@keyframes logoGlow {
    0%, 100% { 
        filter: drop-shadow(0 0 20px rgba(210, 129, 23, 0.6));
        transform: scale(1);
    }
    50% { 
        filter: drop-shadow(0 0 30px rgba(230, 148, 31, 0.8));
        transform: scale(1.05);
    }
}

.mobile-app-badge {
    margin: 2rem 0;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(210, 129, 23, 0.2), rgba(45, 24, 16, 0.4));
    border: 2px solid rgba(210, 129, 23, 0.4);
    border-radius: 16px;
    backdrop-filter: blur(10px);
}

.coming-soon {
    display: block;
    font-size: 1.4rem;
    color: #E6941F;
    font-weight: 600;
    margin-bottom: 1rem;
    text-shadow: 0 0 15px rgba(230, 148, 31, 0.5);
    font-family: 'Uncial Antiqua', serif;
}

.platform-badges {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.platform-badge {
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
}

.platform-badge.android {
    background: linear-gradient(135deg, #3DDC84, #2E7D32);
    color: white;
    box-shadow: 0 4px 15px rgba(61, 220, 132, 0.3);
}

.platform-badge.ios {
    background: linear-gradient(135deg, #007AFF, #0051D0);
    color: white;
    box-shadow: 0 4px 15px rgba(0, 122, 255, 0.3);
}

.platform-badge:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.app-description {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    color: #e8e3d3;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    line-height: 1.8;
    text-align: left;
}

.app-screenshots {
    display: flex;
    gap: 1rem;
    justify-content: center;
    align-items: center;
}

.screenshot-container {
    flex: 1;
    max-width: 200px;
    transition: all 0.4s ease;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.screenshot-container.featured {
    transform: scale(1.1);
    z-index: 2;
    box-shadow: 0 15px 40px rgba(210, 129, 23, 0.3);
}

.screenshot {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
    transition: all 0.4s ease;
}

.screenshot-container:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(210, 129, 23, 0.4);
}

.screenshot-container.featured:hover {
    transform: scale(1.15);
}

.feature {
    padding: 2rem;
    background: linear-gradient(135deg, rgba(210, 129, 23, 0.1), rgba(45, 24, 16, 0.3));
    border: 1px solid rgba(210, 129, 23, 0.3);
    border-radius: 12px;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(210, 129, 23, 0.2);
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
}

.feature:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 16px 48px rgba(0, 0, 0, 0.4),
        0 0 30px rgba(210, 129, 23, 0.3),
        inset 0 1px 0 rgba(230, 148, 31, 0.3);
    border-color: rgba(230, 148, 31, 0.5);
}

.feature h3 {
    color: #E6941F;
    margin-bottom: 1rem;
    font-size: 1.4rem;
    text-shadow: 0 0 10px rgba(230, 148, 31, 0.5);
}

.feature p {
    color: #e8e3d3;
    line-height: 1.7;
}

/* Discovery Section */
.discovery {
    background: 
        linear-gradient(rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.7)),
        radial-gradient(ellipse at 30% 40%, #4a2d14 0%, transparent 50%),
        radial-gradient(ellipse at 70% 80%, #2d1810 0%, transparent 50%),
        #0a0a0a;
}

.discovery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
}

.discovery-card {
    background: linear-gradient(135deg, rgba(45, 24, 16, 0.4), rgba(210, 129, 23, 0.1));
    padding: 3rem;
    border-radius: 16px;
    border: 1px solid rgba(210, 129, 23, 0.3);
    box-shadow: 
        0 12px 40px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(210, 129, 23, 0.2);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    backdrop-filter: blur(15px);
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
    cursor: pointer;
}

.card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(230, 148, 31, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.6s ease;
    pointer-events: none;
}

.card-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.card-particles::before,
.card-particles::after {
    content: '';
    position: absolute;
    width: 4px;
    height: 4px;
    background: #E6941F;
    border-radius: 50%;
    opacity: 0;
    animation: floatParticles 3s infinite ease-in-out;
}

.card-particles::before {
    top: 20%;
    left: 20%;
    animation-delay: 0s;
}

.card-particles::after {
    top: 70%;
    right: 20%;
    animation-delay: 1.5s;
}

@keyframes floatParticles {
    0%, 100% { 
        opacity: 0; 
        transform: translateY(0) scale(0.8);
        filter: blur(1px);
    }
    50% { 
        opacity: 1; 
        transform: translateY(-20px) scale(1);
        filter: blur(0);
    }
}

.discovery-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(210, 129, 23, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.discovery-card:hover .card-glow {
    opacity: 1;
}

.discovery-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.5),
        0 0 40px rgba(210, 129, 23, 0.4),
        inset 0 1px 0 rgba(230, 148, 31, 0.3);
    border-color: rgba(230, 148, 31, 0.6);
}

.discovery-card h3 {
    color: #E6941F;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    font-family: 'Uncial Antiqua', serif;
    text-shadow: 0 0 15px rgba(230, 148, 31, 0.5);
}

.discovery-card p {
    color: #e8e3d3;
    line-height: 1.8;
    font-size: 1.1rem;
}

/* Contact */
.contact {
    background: 
        linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.9)),
        radial-gradient(ellipse at center, #2d1810 0%, #0a0a0a 70%);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info h3 {
    color: #E6941F;
    margin-bottom: 1.5rem;
    font-size: 1.6rem;
    text-shadow: 0 0 15px rgba(230, 148, 31, 0.5);
}

.contact-info p {
    color: #e8e3d3;
    margin-bottom: 2rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

.contact-details p {
    margin-bottom: 1rem;
    color: #e8e3d3;
}

.contact-details strong {
    color: #E6941F;
}

.contact-form {
    background: linear-gradient(135deg, rgba(45, 24, 16, 0.3), rgba(210, 129, 23, 0.1));
    padding: 3rem;
    border-radius: 16px;
    border: 1px solid rgba(210, 129, 23, 0.3);
    box-shadow: 
        0 12px 40px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(210, 129, 23, 0.2);
    backdrop-filter: blur(15px);
}

.form-group {
    margin-bottom: 2rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.8rem;
    font-weight: 400;
    color: #E6941F;
    font-size: 1.1rem;
    text-shadow: 0 0 10px rgba(230, 148, 31, 0.3);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid rgba(210, 129, 23, 0.3);
    border-radius: 8px;
    font-size: 1rem;
    font-family: 'IM Fell English', serif;
    background: rgba(0, 0, 0, 0.5);
    color: #e8e3d3;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #E6941F;
    box-shadow: 
        0 0 20px rgba(230, 148, 31, 0.3),
        inset 0 1px 0 rgba(230, 148, 31, 0.1);
    background: rgba(0, 0, 0, 0.7);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(232, 227, 211, 0.5);
}

/* Footer */
.footer {
    background: 
        linear-gradient(rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.95)),
        radial-gradient(ellipse at center, #2d1810 0%, #0a0a0a 50%);
    color: #e8e3d3;
    padding: 4rem 0 2rem;
    border-top: 1px solid rgba(210, 129, 23, 0.3);
}

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

.footer-section h3 {
    margin-bottom: 1.5rem;
    color: #E6941F;
    font-size: 1.3rem;
    text-shadow: 0 0 10px rgba(230, 148, 31, 0.5);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section a {
    color: #e8e3d3;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-section a:hover {
    color: #E6941F;
    text-shadow: 0 0 10px rgba(230, 148, 31, 0.5);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(210, 129, 23, 0.3);
    color: rgba(232, 227, 211, 0.7);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.project-enra-credit {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.project-enra-credit:hover {
    opacity: 1;
}

.enra-logo {
    height: 24px;
    width: auto;
    filter: grayscale(100%) brightness(0.7);
    transition: filter 0.3s ease;
}

.project-enra-credit:hover .enra-logo {
    filter: grayscale(0%) brightness(1);
}

.project-enra-credit span {
    font-size: 0.9rem;
    color: rgba(232, 227, 211, 0.6);
}

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

@keyframes glowPulse {
    0%, 100% { 
        text-shadow: 
            0 0 20px rgba(230, 148, 31, 0.6),
            0 0 40px rgba(210, 129, 23, 0.3);
    }
    50% { 
        text-shadow: 
            0 0 30px rgba(230, 148, 31, 0.8),
            0 0 60px rgba(210, 129, 23, 0.5);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background: rgba(10, 10, 10, 0.98);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
        padding: 3rem 0;
        border-top: 1px solid rgba(210, 129, 23, 0.3);
        backdrop-filter: blur(15px);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }

    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active span:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }

    .hero-title {
        font-size: 2.8rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .app-showcase,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .app-screenshots {
        flex-direction: column;
        gap: 2rem;
    }
    
    .screenshot-container {
        max-width: 300px;
        margin: 0 auto;
    }
    
    .main-logo {
        width: 100px;
    }

    .discovery-grid {
        grid-template-columns: 1fr;
    }

    .heritage h2,
    .discovery h2,
    .contact h2 {
        font-size: 2.2rem;
    }

    .nav-logo h1 {
        font-size: 1.6rem;
    }

    .logo-img {
        height: 40px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .discovery-card,
    .contact-form {
        padding: 2rem;
    }

    .feature {
        padding: 1.5rem;
    }

    .nav-container {
        height: 70px;
    }

    .hero {
        padding-top: 70px;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }

    .project-enra-credit {
        justify-content: center;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading animation for better UX */
.loading {
    opacity: 0;
    animation: fadeIn 0.8s ease forwards;
}

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

/* Mystical glow effects */
.mystical-glow {
    animation: glowPulse 3s ease-in-out infinite;
}

/* Particle effects for enhanced mystical feel */
.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, rgba(230, 148, 31, 0.3), transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(210, 129, 23, 0.2), transparent),
        radial-gradient(1px 1px at 90px 40px, rgba(244, 167, 59, 0.4), transparent),
        radial-gradient(1px 1px at 130px 80px, rgba(139, 69, 19, 0.3), transparent);
    background-repeat: repeat;
    background-size: 150px 100px;
    animation: sparkle 20s linear infinite;
    pointer-events: none;
}

@keyframes sparkle {
    0% { transform: translateY(0); }
    100% { transform: translateY(-100px); }
}