:root {
    --primary: #FF3366;
    --secondary: #FF6B6B;
    --dark: #0F0E17;
    --darker: #0A0912;
    --light: #FFFFFF;
    --lighter: #F9F9F9;
    --accent: #FF8E8E;
    --danger: #FF4757;
    --warning: #FFA502;
    --text: #E2E2E2;
    --text-dark: #B8B8B8;
    --card-bg: linear-gradient(135deg, rgba(255, 51, 102, 0.15), rgba(255, 255, 255, 0.1));
    --card-border: rgba(255, 107, 107, 0.3);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: var(--darker);
    color: var(--text);
    overflow-x: hidden;
    scroll-behavior: smooth;
    position: relative;
}

/* Thailand Night Sky Background */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, #0F0E17 0%, #1A1A2E 50%, #16213E 100%);
    z-index: -2;
}

/* Stars */
body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(1px 1px at 10% 20%, white, rgba(0,0,0,0)),
        radial-gradient(1px 1px at 20% 30%, white, rgba(0,0,0,0)),
        radial-gradient(1px 1px at 30% 40%, white, rgba(0,0,0,0)),
        radial-gradient(1px 1px at 40% 50%, white, rgba(0,0,0,0)),
        radial-gradient(1px 1px at 50% 60%, white, rgba(0,0,0,0)),
        radial-gradient(1px 1px at 60% 70%, white, rgba(0,0,0,0)),
        radial-gradient(1px 1px at 70% 80%, white, rgba(0,0,0,0)),
        radial-gradient(1px 1px at 80% 90%, white, rgba(0,0,0,0)),
        radial-gradient(1px 1px at 90% 10%, white, rgba(0,0,0,0));
    background-size: 200px 200px;
    z-index: -1;
    animation: twinkle 5s infinite alternate;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--dark);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(var(--primary), var(--secondary));
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--secondary);
}

/* Loading Screen */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--darker);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.8s ease-out;
}

.loading-screen.hidden {
    opacity: 0;
    pointer-events: none;
}

.loader {
    width: 70px;
    height: 70px;
    border: 5px solid rgba(255, 51, 102, 0.2);
    border-radius: 50%;
    border-top-color: var(--primary);
    animation: spin 1.5s cubic-bezier(0.4, 0, 0.2, 1) infinite;
    margin-bottom: 25px;
    position: relative;
}

.loader::after {
    content: '';
    position: absolute;
    top: -8px;
    left: -8px;
    right: -8px;
    bottom: -8px;
    border: 5px solid rgba(255, 107, 107, 0.1);
    border-radius: 50%;
    border-top-color: var(--secondary);
    animation: spin 2s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

.loading-text {
    font-size: 1.2rem;
    color: var(--text);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
    animation: fadePulse 2s ease-in-out infinite;
}

/* Header Styles */
header {
    background: linear-gradient(135deg, rgba(255, 51, 102, 0.9), rgba(255, 107, 107, 0.9));
    backdrop-filter: blur(8px);
    position: fixed;
    width: 100%;
    z-index: 1000;
    padding: 15px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

header.scrolled {
    padding: 10px 5%;
    background: linear-gradient(135deg, rgba(255, 51, 102, 0.95), rgba(255, 107, 107, 0.95));
}

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

.logo img {
    height: 40px;
    transition: all 0.3s ease;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.3));
}

.logo:hover img {
    transform: rotate(15deg) scale(1.1);
}

.logo h1 {
    font-size: 1.6rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--light), #FFE5E5);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    transition: all 0.3s ease;
}

.logo:hover h1 {
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.5);
}

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

nav ul li {
    position: relative;
}

nav ul li a {
    color: var(--light);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-block;
    padding: 5px 0;
    text-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
}

nav ul li a:hover {
    color: var(--light);
    transform: translateY(-2px);
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--light);
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

nav ul li a:hover::after {
    width: 100%;
}

.cta-button {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--light);
    border: none;
    padding: 10px 25px;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(255, 51, 102, 0.4);
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    z-index: 1;
}

.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: 0.6s;
    z-index: -1;
}

.cta-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(255, 51, 102, 0.6);
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:active {
    transform: translateY(1px) scale(0.98);
}

.secondary-button {
    background: transparent;
    color: var(--light);
    border: 2px solid var(--light);
    padding: 10px 25px;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.secondary-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: 0.6s;
    z-index: -1;
}

.secondary-button:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 4px 20px rgba(255, 255, 255, 0.2);
}

.secondary-button:hover::before {
    left: 100%;
}

.secondary-button:active {
    transform: translateY(1px) scale(0.98);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 0 5%;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 30% 50%, rgba(255, 51, 102, 0.2) 0%, transparent 50%);
    z-index: -1;
    animation: rotateGradient 20s linear infinite;
}

.hero-content {
    max-width: 600px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: 0.3s;
}

.hero-content h2 {
    font-size: 3.2rem;
    margin-bottom: 20px;
    line-height: 1.2;
    color: var(--light);
    font-weight: 700;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.hero-content h2 span {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-content p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    line-height: 1.6;
    color: var(--text-dark);
}

.hero-buttons {
    display: flex;
    gap: 15px;
}

.hero-image {
    position: absolute;
    right: 5%;
    opacity: 0;
    transform: translateX(50px) rotate(5deg);
    animation: fadeInRight 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: 0.6s;
}

.hero-image img {
    height: 500px;
    filter: drop-shadow(0 10px 30px rgba(255, 51, 102, 0.4));
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-image:hover img {
    transform: translateY(-15px) rotate(-5deg);
    filter: drop-shadow(0 15px 40px rgba(255, 51, 102, 0.6));
}

/* Features Section */
.features {
    padding: 100px 5%;
    position: relative;
    background-color: var(--dark);
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 70% 50%, rgba(255, 142, 142, 0.1) 0%, transparent 50%);
    z-index: 0;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.section-title h2 {
    font-size: 2.3rem;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
    color: var(--light);
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    border-radius: 2px;
}

.section-title p {
    max-width: 700px;
    margin: 0 auto;
    color: var(--text-dark);
    font-size: 1.05rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
}

.feature-card {
    background: var(--card-bg);
    border-radius: 12px;
    padding: 30px;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    border: 1px solid var(--card-border);
    backdrop-filter: blur(8px);
    opacity: 0;
    transform: translateY(50px) scale(0.95);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    transform: rotate(30deg);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    opacity: 0;
}

.feature-card.animate {
    animation: cardAppear 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.feature-card:hover {
    transform: translateY(-10px) scale(1.02) !important;
    box-shadow: 0 15px 35px rgba(255, 51, 102, 0.3);
}

.feature-card:hover::before {
    opacity: 1;
    transform: rotate(30deg) translate(20%, 20%);
}

.feature-icon {
    font-size: 2.3rem;
    margin-bottom: 20px;
    color: var(--primary);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: inline-block;
}

.feature-card:hover .feature-icon {
    transform: translateY(-5px) scale(1.2);
    color: var(--light);
    text-shadow: 0 0 10px rgba(255, 51, 102, 0.5);
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--light);
    font-weight: 600;
    transition: all 0.4s ease;
}

.feature-card:hover h3 {
    color: var(--light);
}

.feature-card p {
    color: var(--text-dark);
    line-height: 1.6;
    font-size: 0.95rem;
    transition: all 0.4s ease;
}

.feature-card:hover p {
    color: var(--text);
}

/* Anti-Nuke Section */
.anti-nuke {
    padding: 100px 5%;
    position: relative;
    background-color: var(--darker);
    overflow: hidden;
}

.anti-nuke::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 70%, rgba(255, 71, 87, 0.1) 0%, transparent 50%);
    z-index: 0;
}

.anti-nuke-content {
    display: flex;
    align-items: center;
    gap: 60px;
    position: relative;
}

.anti-nuke-text {
    flex: 1;
    opacity: 0;
    transform: translateX(-50px);
    animation: fadeInLeft 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.anti-nuke-text h2 {
    font-size: 2.3rem;
    margin-bottom: 20px;
    color: var(--light);
}

.anti-nuke-text h2 span {
    background: linear-gradient(135deg, var(--danger), var(--secondary));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.anti-nuke-text p {
    margin-bottom: 25px;
    color: var(--text-dark);
    line-height: 1.6;
    font-size: 1.05rem;
}

.protection-list {
    list-style: none;
    margin-bottom: 30px;
}

.protection-list li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text);
    font-size: 0.95rem;
    opacity: 0;
    transform: translateX(-20px);
    animation: fadeInLeft 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.protection-list li:nth-child(1) { animation-delay: 0.3s; }
.protection-list li:nth-child(2) { animation-delay: 0.4s; }
.protection-list li:nth-child(3) { animation-delay: 0.5s; }
.protection-list li:nth-child(4) { animation-delay: 0.6s; }
.protection-list li:nth-child(5) { animation-delay: 0.7s; }
.protection-list li:nth-child(6) { animation-delay: 0.8s; }

.protection-list li i {
    color: var(--accent);
    font-size: 1.1rem;
    min-width: 20px;
}

.anti-nuke-image {
    flex: 1;
    position: relative;
    opacity: 0;
    transform: translateX(50px) rotate(2deg);
    animation: fadeInRight 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.anti-nuke-image img {
    width: 100%;
    max-width: 500px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(255, 71, 87, 0.3);
    border: 1px solid rgba(255, 71, 87, 0.3);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.anti-nuke-image:hover img {
    transform: scale(1.03) rotate(-1deg);
    box-shadow: 0 15px 40px rgba(255, 71, 87, 0.4);
}

/* Stats Section */
.stats {
    padding: 80px 5%;
    text-align: center;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    position: relative;
    overflow: hidden;
}

.stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path fill="rgba(255,255,255,0.05)" d="M0,0 L100,0 L100,100 L0,100 Z"></path></svg>');
    background-size: cover;
    opacity: 0.1;
}

.stats .section-title h2 {
    color: var(--light);
}

.stats .section-title p {
    color: rgba(255, 255, 255, 0.8);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 50px;
}

.stat-item {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    border-radius: 12px;
    padding: 30px;
    backdrop-filter: blur(8px);
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0;
    transform: translateY(50px) scale(0.95);
    position: relative;
    overflow: hidden;
}

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

.stat-item.animate {
    animation: cardAppear 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.stat-item:hover {
    transform: translateY(-10px) scale(1.02) !important;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.1));
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

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

.stat-number {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--light);
    font-family: 'Poppins', sans-serif;
}

.stat-label {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

/* CTA Section */
.cta {
    padding: 100px 5%;
    text-align: center;
    background-color: var(--dark);
    position: relative;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(255, 51, 102, 0.2) 0%, transparent 70%);
    z-index: 0;
}

.cta .section-title h2 {
    color: var(--light);
}

.cta .section-title p {
    color: var(--text-dark);
}

.cta-button.large {
    padding: 15px 35px;
    font-size: 1.1rem;
    margin-top: 20px;
    animation: pulse 2s infinite;
}

/* Footer */
footer {
    background-color: var(--darker);
    padding: 80px 5% 40px;
    border-top: 1px solid rgba(255, 107, 107, 0.1);
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 100%, rgba(255, 51, 102, 0.05) 0%, transparent 70%);
    z-index: 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.footer-column h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--light);
    font-weight: 600;
    position: relative;
    padding-bottom: 10px;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    border-radius: 3px;
}

.footer-column p {
    color: var(--text-dark);
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

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

.footer-column ul li {
    margin-bottom: 12px;
    opacity: 0;
    transform: translateY(10px);
    animation: fadeInUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.footer-column ul li:nth-child(1) { animation-delay: 0.1s; }
.footer-column ul li:nth-child(2) { animation-delay: 0.2s; }
.footer-column ul li:nth-child(3) { animation-delay: 0.3s; }
.footer-column ul li:nth-child(4) { animation-delay: 0.4s; }
.footer-column ul li:nth-child(5) { animation-delay: 0.5s; }

.footer-column ul li a {
    color: var(--text-dark);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    display: inline-block;
}

.footer-column ul li a:hover {
    color: var(--light);
    transform: translateX(5px);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 51, 102, 0.2), rgba(255, 107, 107, 0.2));
    color: var(--text);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    opacity: 0;
    transform: translateY(10px);
    animation: fadeInUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.social-links a:nth-child(1) { animation-delay: 0.2s; }
.social-links a:nth-child(2) { animation-delay: 0.3s; }
.social-links a:nth-child(3) { animation-delay: 0.4s; }

.social-links a:hover {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--light);
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 5px 15px rgba(255, 51, 102, 0.4);
}

.copyright {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 107, 107, 0.1);
    color: var(--text-dark);
    font-size: 0.9rem;
    position: relative;
    z-index: 1;
}

/* Animations */
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes fadePulse {
    0%, 100% { opacity: 0.8; }
    50% { opacity: 1; }
}

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

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

@keyframes rotateGradient {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

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

@keyframes twinkle {
    0% { opacity: 0.2; }
    100% { opacity: 1; }
}

@keyframes pulse {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 107, 107, 0.7); }
    70% { transform: scale(1.05); box-shadow: 0 0 0 10px rgba(255, 107, 107, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 107, 107, 0); }
}

/* Mobile Responsiveness */
@media (max-width: 1200px) {
    .hero-image img {
        height: 450px;
    }
    
    .anti-nuke-content {
        gap: 40px;
    }
}

@media (max-width: 992px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding-top: 100px;
        padding-bottom: 80px;
    }

    .hero-content {
        max-width: 100%;
        margin-bottom: 50px;
        text-align: center;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-image {
        position: relative;
        right: auto;
        margin-top: 0;
        transform: none !important;
        animation: fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) forwards !important;
        animation-delay: 0.6s !important;
    }

    .hero-image img {
        height: 350px;
    }

    .anti-nuke-content {
        flex-direction: column;
    }

    .anti-nuke-text {
        order: 2;
        text-align: center;
        transform: translateY(50px) !important;
        animation: fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) forwards !important;
    }

    .anti-nuke-image {
        order: 1;
        margin-bottom: 50px;
        transform: translateY(50px) !important;
        animation: fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) forwards !important;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 768px) {
    nav ul {
        display: none;
    }

    .hero-content h2 {
        font-size: 2.5rem;
    }

    .hero-image img {
        height: 300px;
    }

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

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .hero-content h2 {
        font-size: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .section-title h2 {
        font-size: 1.8rem;
    }

    .feature-card {
        padding: 25px;
    }

    .stat-item {
        padding: 25px 15px;
    }
}