* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background: linear-gradient(135deg, #17161d 0%, #2a2236 48%, #322048 100%);
    background-size: 200% 200%;
    animation: bgShift 16s ease infinite;
    color: #f3ead3;
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    background:
        radial-gradient(circle at 15% 20%, rgba(253, 174, 59, 0.08), transparent 35%),
        radial-gradient(circle at 85% 80%, rgba(114, 88, 138, 0.12), transparent 40%);
    animation: ambientGlow 12s ease-in-out infinite alternate;
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 20px 50px;
    background: rgba(31, 30, 35, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(253, 174, 59, 0.2);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.logo-img {
    height: 60px;
    width: auto;
    filter: drop-shadow(0 0 10px rgba(253, 174, 59, 0.3));
    transition: all 0.3s ease;
}

.logo-img:hover {
    transform: scale(1.1);
    filter: drop-shadow(0 0 15px rgba(114, 88, 138, 0.5));
}

.nav-links {
    display: flex;
    gap: 30px;
    list-style: none;
}

.nav-links a {
    color: #f3ead3;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a:hover {
    color: #fdae3b;
    transform: translateY(-2px);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(45deg, #fdae3b, #72588a);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

/* Mobile Menu */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: #f3ead3;
    font-size: 1.8rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.mobile-menu-btn:hover {
    color: #fdae3b;
}

.mobile-menu {
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    background: rgba(31, 30, 35, 0.98);
    backdrop-filter: blur(10px);
    padding: 20px;
    z-index: 999;
    transform: translateY(-100%);
    opacity: 0;
    transition: all 0.3s ease;
    visibility: hidden;
}

.mobile-menu.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.mobile-menu ul {
    list-style: none;
    text-align: center;
    margin: 0;
    padding: 0;
}

.mobile-menu li {
    margin: 15px 0;
}

.mobile-menu a {
    color: #f3ead3;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 500;
    padding: 15px 20px;
    display: block;
    transition: all 0.3s ease;
    background: rgba(114, 88, 138, 0.1);
    border-radius: 10px;
    margin: 0 20px;
}

.mobile-menu a:hover {
    color: #fdae3b;
    background: rgba(253, 174, 59, 0.2);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    background-image: 
        linear-gradient(rgba(20, 18, 26, 0.66), rgba(34, 22, 48, 0.78)),
        url('https://image.api.playstation.com/vulcan/ap/rnd/202203/0302/tsPK3f1LykIBkCUxAEdPMfeZ.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 120px 20px 60px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(253, 174, 59, 0.2) 0%, transparent 52%),
                radial-gradient(circle at 70% 80%, rgba(114, 88, 138, 0.2) 0%, transparent 52%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    width: 100%;
    padding: 34px;
    border-radius: 24px;
    background: rgba(21, 19, 28, 0.48);
    border: 1px solid rgba(253, 174, 59, 0.28);
    backdrop-filter: blur(6px);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.34), 0 0 0 1px rgba(114, 88, 138, 0.2);
}

.hero h1 {
    font-size: 4.5rem;
    margin-bottom: 20px;
    background: linear-gradient(45deg, #fdae3b, #72588a, #fdae3b);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 6px 18px rgba(114, 88, 138, 0.35));
    animation: slideInUp 1s ease-out;
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 40px;
    opacity: 0.9;
    animation: slideInUp 1s ease-out 0.2s both;
}

.cta-button {
    display: inline-block;
    padding: 18px 40px;
    background: linear-gradient(45deg, #fdae3b, #72588a);
    color: #1f1e23;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    animation: slideInUp 1s ease-out 0.4s both;
    position: relative;
    overflow: hidden;
}

.cta-row { display:flex; gap:16px; justify-content:center; flex-wrap:wrap; }

.cta-secondary {
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:14px 30px;
    min-height:52px;
    line-height:1;
    border-radius:50px;
    background:rgba(255, 255, 255, 0.02);
    color:#f3ead3;
    border:1px solid rgba(253,174,59,0.18);
    text-decoration:none;
    font-weight:600;
    transition: all 0.25s ease;
}

.cta-secondary:hover {
    transform: translateY(-2px);
    border-color: rgba(253, 174, 59, 0.55);
    box-shadow: 0 8px 24px rgba(253, 174, 59, 0.15);
}

.cta-discord {
    border-color: rgba(88, 101, 242, 0.5);
    color: #dbe1ff;
}

.cta-discord:hover {
    border-color: #5865F2;
    box-shadow: 0 10px 26px rgba(88, 101, 242, 0.35);
}

.ribbon{position:absolute;top:16px;right:16px;background:#fdae3b;color:#1f1e23;padding:6px 10px;border-radius:12px;font-weight:700;font-size:0.85rem}

.trust-badges{display:flex;gap:20px;justify-content:center;margin-top:24px;flex-wrap:wrap}
.trust-badges .badge{background:rgba(255,255,255,0.03);padding:8px 12px;border-radius:999px;border:1px solid rgba(114,88,138,0.08);font-weight:600}

.conversion-note {
    margin: -20px auto 24px;
    opacity: 0.9;
    max-width: 700px;
    color: #f3ead3;
}

.cta-button::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;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(253, 174, 59, 0.3);
}

.cta-button {
    animation: slideInUp 1s ease-out 0.4s both, pulseGlow 2.8s ease-in-out infinite;
}

@keyframes slideInUp {
    from { opacity: 0; transform: translateY(50px); }
    to { opacity: 1; transform: translateY(0); }
}

/* About Section */
.about {
    padding: 100px 50px;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 80% 20%, rgba(253, 174, 59, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 20% 80%, rgba(114, 88, 138, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.about-container {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.about-content h2 {
    font-size: 3rem;
    margin-bottom: 30px;
    background: linear-gradient(45deg, #fdae3b, #72588a);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.2;
}

.about-content p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 25px;
    opacity: 0.9;
    color: #f3ead3;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.stat-item {
    text-align: center;
    padding: 20px;
    background: rgba(114, 88, 138, 0.1);
    border-radius: 15px;
    border: 1px solid rgba(253, 174, 59, 0.2);
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    border-color: #fdae3b;
    box-shadow: 0 10px 25px rgba(114, 88, 138, 0.2);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: #fdae3b;
    display: block;
    margin-bottom: 5px;
}

.stat-label {
    color: #72588a;
    font-weight: 500;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-image {
    position: relative;
    width: 400px;
    height: 400px;
    border-radius: 25px;
    overflow: hidden;
    background: linear-gradient(45deg, rgba(253, 174, 59, 0.1), rgba(114, 88, 138, 0.1));
    border: 2px solid rgba(253, 174, 59, 0.3);
    transition: all 0.3s ease;
}

.about-image:hover {
    transform: scale(1.02);
    border-color: #fdae3b;
    box-shadow: 0 20px 40px rgba(114, 88, 138, 0.3);
}

.about-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(253, 174, 59, 0.1) 0%, rgba(114, 88, 138, 0.1) 100%);
    z-index: 1;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.about-image:hover img {
    transform: scale(1.05);
}

/* Features Section */
.features {
    padding: 100px 50px;
    max-width: 1400px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 60px;
    background: linear-gradient(45deg, #fdae3b, #72588a);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 4px 14px rgba(253, 174, 59, 0.2));
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.feature-card {
    background: linear-gradient(180deg, rgba(114, 88, 138, 0.16), rgba(31, 30, 35, 0.34));
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(253, 174, 59, 0.28);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #fdae3b, #72588a);
}

.feature-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 15% 10%, rgba(253, 174, 59, 0.18), transparent 40%);
    opacity: 0;
    transition: opacity 0.35s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 22px 44px rgba(114, 88, 138, 0.34), 0 0 24px rgba(253, 174, 59, 0.14);
    border-color: #fdae3b;
}

.feature-card:hover::after {
    opacity: 1;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #fdae3b, #72588a);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 24px;
    box-shadow: 0 10px 24px rgba(114, 88, 138, 0.35);
}

.feature-card h3 {
    color: #fdae3b;
    margin-bottom: 15px;
    font-size: 1.4rem;
}

/* Pricing Section */
.pricing {
    padding: 100px 50px;
    background: linear-gradient(135deg, rgba(24, 22, 31, 0.96), rgba(78, 58, 100, 0.24));
}

.pricing-container {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.pricing-card {
    background: linear-gradient(180deg, rgba(31, 30, 35, 0.9), rgba(40, 32, 53, 0.78));
    padding: 50px 30px;
    border-radius: 25px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
}

.pricing-card.featured {
    border-color: #fdae3b;
    transform: scale(1.05);
    overflow: hidden;
}

.pricing-card.featured::after {
    content: '';
    position: absolute;
    top: -150%;
    left: -30%;
    width: 60%;
    height: 300%;
    transform: rotate(18deg);
    background: linear-gradient(180deg, transparent, rgba(253, 174, 59, 0.25), transparent);
    animation: shineSweep 4.5s linear infinite;
    pointer-events: none;
}

.pricing-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: #72588a;
    box-shadow: 0 20px 48px rgba(18, 12, 28, 0.55), 0 0 22px rgba(114, 88, 138, 0.28);
}

.pricing-card.featured:hover {
    transform: translateY(-10px) scale(1.08);
}

.price {
    font-size: 3rem;
    font-weight: bold;
    color: #fdae3b;
    margin-bottom: 10px;
}

.price-period {
    color: #72588a;
    margin-bottom: 30px;
    font-size: 1.1rem;
    font-weight: 500;
    opacity: 0.8;
}

.features-list {
    list-style: none;
    margin-bottom: 40px;
}

.features-list li {
    padding: 8px 0;
    border-bottom: 1px solid rgba(114, 88, 138, 0.2);
}

.features-list li:before {
    content: '✓';
    color: #fdae3b;
    font-weight: bold;
    margin-right: 10px;
}

.buy-button {
    display: inline-block;
    padding: 15px 35px;
    background: linear-gradient(45deg, #8b6cab, #fdae3b);
    color: #f3ead3;
    text-decoration: none;
    border-radius: 25px;
    font-weight: bold;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 10px 22px rgba(114, 88, 138, 0.35);
}

.buy-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(253, 174, 59, 0.32);
}

/* Products Preview Section */
.products-preview {
    padding: 100px 50px;
    max-width: 1200px;
    margin: 0 auto;
}

.products-preview-container {
    text-align: center;
}

.product-spotlight-card {
    margin: 0 auto;
    max-width: 860px;
    background: linear-gradient(180deg, rgba(31, 30, 35, 0.86), rgba(49, 36, 66, 0.82));
    border: 1px solid rgba(253, 174, 59, 0.35);
    border-radius: 24px;
    padding: 42px 34px;
    box-shadow: 0 18px 44px rgba(10, 8, 14, 0.45), 0 0 24px rgba(253, 174, 59, 0.12);
}

.product-pill {
    display: inline-block;
    margin-bottom: 16px;
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 0.82rem;
    letter-spacing: 0.08em;
    font-weight: 700;
    text-transform: uppercase;
    background: rgba(253, 174, 59, 0.2);
    border: 1px solid rgba(253, 174, 59, 0.55);
    color: #fdae3b;
}

.product-spotlight-card h3 {
    font-size: 2rem;
    margin-bottom: 14px;
    color: #f3ead3;
}

.product-copy {
    font-size: 1.1rem;
    line-height: 1.7;
    opacity: 0.95;
    margin-bottom: 24px;
}

.product-points {
    list-style: none;
    display: grid;
    gap: 10px;
    margin: 0 auto 28px;
    max-width: 520px;
    text-align: left;
}

.product-points li {
    padding: 10px 14px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(114, 88, 138, 0.28);
}

.product-points li::before {
    content: '✓';
    color: #fdae3b;
    font-weight: 700;
    margin-right: 10px;
}

.product-buttons {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

.product-microcopy {
    margin-top: 18px;
    opacity: 0.8;
}

/* Footer */
footer {
    background: linear-gradient(180deg, #1f1e23, #16151b);
    padding: 50px;
    text-align: center;
    border-top: 1px solid rgba(253, 174, 59, 0.2);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.footer-links a {
    color: #f3ead3;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #fdae3b;
}

/* Floating Elements */
.floating-elements {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.floating-element {
    position: absolute;
    background: linear-gradient(45deg, rgba(253, 174, 59, 0.16), rgba(114, 88, 138, 0.18));
    border-radius: 50%;
    filter: blur(1px);
    animation: float 15s infinite linear;
}

.floating-element:nth-child(1) {
    width: 80px;
    height: 80px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.floating-element:nth-child(2) {
    width: 60px;
    height: 60px;
    top: 60%;
    right: 15%;
    animation-delay: 5s;
}

.floating-element:nth-child(3) {
    width: 100px;
    height: 100px;
    bottom: 20%;
    left: 20%;
    animation-delay: 10s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    33% { transform: translateY(-20px) rotate(120deg); }
    66% { transform: translateY(-10px) rotate(240deg); }
}

.discord-float {
    position: fixed;
    right: 20px;
    bottom: 24px;
    z-index: 1001;
    padding: 12px 18px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 700;
    color: #ffffff;
    background: linear-gradient(45deg, #5865F2, #7a88ff);
    box-shadow: 0 14px 34px rgba(88, 101, 242, 0.45);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    animation: discordBounce 3s ease-in-out infinite;
}

.discord-float:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 16px 38px rgba(88, 101, 242, 0.6);
}

@keyframes bgShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes ambientGlow {
    0% { opacity: 0.5; transform: scale(1); }
    100% { opacity: 1; transform: scale(1.04); }
}

@keyframes pulseGlow {
    0%, 100% { box-shadow: 0 10px 30px rgba(253, 174, 59, 0.22); }
    50% { box-shadow: 0 14px 36px rgba(253, 174, 59, 0.4); }
}

@keyframes shineSweep {
    0% { top: -160%; left: -30%; }
    100% { top: 130%; left: 120%; }
}

@keyframes discordBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    /* Navigation */
    nav {
        padding: 15px 20px;
    }
    
    .nav-links {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .logo-img {
        height: 50px;
    }
    
    /* Hero */
    .hero {
        background-attachment: scroll;
        padding: 100px 20px 40px;
        min-height: calc(100vh - 80px);
    }
    
    .hero h1 {
        font-size: 2.8rem;
        margin-bottom: 15px;
    }

    .hero-content {
        padding: 26px 20px;
    }
    
    .hero p {
        font-size: 1.1rem;
        margin-bottom: 30px;
        line-height: 1.6;
    }
    
    .cta-button {
        padding: 15px 30px;
        font-size: 1rem;
    }
    
    /* About */
    .about {
        padding: 60px 20px;
    }
    
    .about-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .about-content h2 {
        font-size: 2.2rem;
    }
    
    .about-content p {
        font-size: 1rem;
    }
    
    .about-image {
        width: 280px;
        height: 280px;
        margin: 0 auto;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    /* Features */
    .features {
        padding: 60px 20px;
    }
    
    .section-title {
        font-size: 2.2rem;
        margin-bottom: 40px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-top: 40px;
    }
    
    .feature-card {
        padding: 30px 20px;
    }
    
    .feature-card:hover {
        transform: translateY(-5px);
    }
    
    /* Pricing */
    .pricing {
        padding: 60px 20px;
    }

    .products-preview {
        padding: 60px 20px;
    }

    .product-spotlight-card {
        padding: 30px 20px;
    }

    .product-spotlight-card h3 {
        font-size: 1.6rem;
    }

    .product-copy {
        font-size: 1rem;
    }

    .product-points {
        max-width: 100%;
    }
    
    .pricing-cards {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-top: 40px;
    }
    
    .pricing-card {
        padding: 40px 25px;
    }
    
    .pricing-card.featured {
        transform: none;
        border-width: 3px;
    }
    
    .pricing-card:hover,
    .pricing-card.featured:hover {
        transform: translateY(-5px);
    }
    
    .price {
        font-size: 2.5rem;
    }
    
    /* Footer */
    footer {
        padding: 40px 20px;
    }
    
    .footer-links {
        gap: 20px;
        flex-direction: column;
        align-items: center;
    }
    
    /* Floating elements - reduce on mobile */
    .floating-element:nth-child(2),
    .floating-element:nth-child(3) {
        display: none;
    }

    .discord-float {
        right: 14px;
        bottom: 16px;
        padding: 10px 14px;
        font-size: 0.92rem;
    }
}

/* Extra small screens */
@media (max-width: 480px) {
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .about-content h2 {
        font-size: 1.8rem;
    }
    
    .about-image {
        width: 240px;
        height: 240px;
    }
    
    .feature-card {
        padding: 25px 15px;
    }

    .product-spotlight-card h3 {
        font-size: 1.35rem;
    }
    
    .pricing-card {
        padding: 30px 20px;
    }
    
    .price {
        font-size: 2rem;
    }
}

/* Landscape mobile orientation */
@media (max-width: 768px) and (orientation: landscape) {
    .hero {
        min-height: calc(100vh - 60px);
        padding: 80px 20px 30px;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1rem;
        margin-bottom: 25px;
    }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation: none !important;
        transition: none !important;
        scroll-behavior: auto !important;
    }
}
