* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-red: #C41E3A;
    --primary-gold: #ffffff;
    --primary-dark: #8B0000;
    --secondary-orange: #FF6B35;
    --dark-bg: #0F0F0F;
    --light-text: #F1F5F9;
    --muted-text: #B0B0B0;
    --card-bg: #1A1A1A;
    --border-color: #333333;
    --accent-gold: #000000;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Rubik', sans-serif;
    background-color: #222;
    color: #000000;
    line-height: 1.6;
    position: relative;
    overflow-x: hidden;
    max-width: 100vw;
}

#particles-canvas {
    display: none;
}

/* MARQUEE REMOVED */

body::before {
    display: none;
}

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

/* Desktop/Mobile visibility */
.desktop-only {
    display: flex;
}

.mobile-only {
    display: none !important;
}

/* NAVBAR */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: transparent;
    border-bottom: none;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: flex-end; /* Aligned to right */
    align-items: center;
    height: 70px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-weight: 700;
    cursor: pointer;
}

.logo-icon {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

/* Removed incorrect .logo-icon img selector */

.logo-text {
    background: linear-gradient(135deg, #ffffff, var(--primary-red)); /* Changed to white -> red */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.nav-links a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 800;
    transition: color 0.3s ease;
    font-size: 20px;
    font-family: 'Anton', sans-serif;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-shadow: 2px 2px 4px #000000;
}

.nav-links a:hover {
    color: #ffffff;
    transform: scale(1.1);
}

/* HERO SECTION */
.hero {
    margin-top: 70px;
    padding: 50px 20px 200px 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    background-image: url('assets/background.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top center;
    min-height: 100vh;
    position: relative;
    z-index: 1;
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
}

.hero h1 {
    font-family: 'Anton', sans-serif;
    font-size: 82px;
    font-weight: 800;
    line-height: 1.1;
    color: #ffffff;
    background: none;
    -webkit-text-fill-color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 2px;
    filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.5));
}

@keyframes goldShine {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.hero-logo {
    max-width: 80%;
    height: auto;
    object-fit: contain;
    margin: 0 auto 20px 0%;
}

.hero-subtitle {
    font-size: 24px;
    color: #FFFFFF;
    font-weight: 400;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.stat {
    display: flex;
    flex-direction: column;
    padding: 20px;
    background: rgba(0,0,0,0.6);
    border: 1px solid rgba(196, 30, 58, 0.3); /* Changed to red */
    border-radius: 12px;
    text-align: center;
    backdrop-filter: blur(5px);
}

.stat-value {
    font-size: 32px;
    font-weight: 700;
    color: #ffffff; /* Changed to white */
    font-family: 'Space Mono', monospace;
}

.stat-label {
    font-size: 12px;
    color: var(--muted-text);
    text-transform: uppercase;
    margin-top: 8px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
}

.btn {
    padding: 16px 40px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Space Mono', monospace;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none !important;
    display: inline-block;
}

a.btn,
a.btn:hover,
a.btn:visited,
a.btn:active {
    text-decoration: none !important;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-red), var(--primary-dark));
    color: white;
    box-shadow: 0 8px 24px rgba(196, 30, 58, 0.3);
}

@keyframes pulse-gold {
    0% { box-shadow: 0 0 0 0 rgba(212, 160, 23, 0.4); }
    70% { box-shadow: 0 0 0 10px rgba(212, 160, 23, 0); }
    100% { box-shadow: 0 0 0 0 rgba(212, 160, 23, 0); }
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(196, 30, 58, 0.5);
}

.btn-secondary {
    background: #ffffff;
    color: #000;
    border: 2px solid #ffffff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn-secondary:hover {
    background: #f0f0f0;
    color: #000;
    border-color: #f0f0f0;
}

.hero-visual {
    position: relative;
    height: 100%;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.trump-image {
    width: 80%;
    height: auto;
    max-height: 80vh;
    object-fit: contain;
    margin: 0 0% 0 auto;
    transition: transform 0.1s ease-out;
    /* Shadow removed as requested */
}

.floating-circle {
    width: 300px;
    height: 300px;
    border: 3px solid var(--primary-red); /* Changed to red */
    border-radius: 50%;
    animation: float 4s ease-in-out infinite;
}

.floating-text {
    position: absolute;
    font-size: 120px;
    animation: bobbing 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

@keyframes bobbing {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-30px); }
}

/* STORY SECTION */
.story-section {
    padding: 150px 20px 100px 20px;
    background: #222;
    color: #ffffff;
    position: relative;
    z-index: 2;
    margin-top: -180px;
    clip-path: polygon(0 5%, 100% 0, 100% 100%, 0 100%);
}

.story-section h2 {
    font-family: 'Anton', sans-serif;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 56px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    color: #ffffff;
    text-shadow: 3px 3px 0px rgba(0, 0, 0, 0.8), 6px 6px 12px rgba(0, 0, 0, 0.6);
}

.story-subtitle {
    font-size: 21.6px;
    line-height: 1.8;
    color: #ffffff;
    margin-bottom: 30px;
    text-align: center;
}

.story-main-image {
    margin-top: -60px;
    margin-bottom: -50px;
}

@media (max-width: 768px) {
    .story-main-image {
        margin-top: 30px !important;
        margin-bottom: 30px !important;
    }
}

.wiki-quote {
    background: rgba(255, 255, 255, 0.05);
    border-left: 4px solid var(--primary-red);
    padding: 30px 40px;
    margin: 0 auto 40px auto;
    max-width: 800px;
    border-radius: 0 8px 8px 0;
    position: relative;
}

.wiki-quote p {
    font-size: 22px;
    font-style: italic;
    line-height: 1.8;
    color: #ffffff;
    margin-bottom: 15px;
}

.wiki-quote cite {
    display: block;
    text-align: right;
    font-size: 28px;
    color: #aaa;
    font-style: normal;
}

.wiki-quote cite a {
    color: #6ab0f3;
    text-decoration: none;
    transition: color 0.2s ease;
}

.wiki-quote cite a:hover {
    color: #fff;
    text-decoration: underline;
}

.story-card {
    background: #f8f8f8;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 40px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.story-card:hover {
    border-color: var(--primary-gold);
    transform: translateY(-5px);
}

.story-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.story-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #000;
}

.story-card p {
    color: #333;
    line-height: 1.8;
}

/* PHILOSOPHY SECTION */
.philosophy-section {
    padding: 100px 20px;
    background: transparent;
    position: relative;
    z-index: 1;
}

.philosophy-section h2 {
    font-family: 'Anton', sans-serif;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 56px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    color: #fff;
    text-shadow: 4px 4px 8px rgba(0,0,0,0.8);
}

.doctrine-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.doctrine-item {
    background: #f8f8f8;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 40px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.doctrine-item:hover {
    border-color: var(--primary-red); /* Changed to red */
    transform: translateY(-5px);
}

.doctrine-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--primary-red), #000000); /* Changed to red->black */
}

.doctrine-number {
    display: inline-block;
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-red); /* Changed to red */
    opacity: 0.3;
    margin-bottom: 20px;
}

.doctrine-item h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #000;
}

.doctrine-item p {
    color: #222;
    line-height: 1.8;
}

/* TOKENOMICS SECTION */
.tokenomics-section {
    padding: 100px 20px;
    background: #ffffff;
    color: #000000;
    position: relative;
    z-index: 3;
    clip-path: polygon(0 0, 100% 7%, 100% 100%, 0 100%);
    margin-top: -50px;
    padding-top: 150px;
    margin-bottom: -50px;
    padding-bottom: 150px;
}

.tokenomics-section .container {
    font-size: 21.6px;
    line-height: 1.8;
    color: #000000;
    text-align: center;
}

.tokenomics-section h2 {
    font-family: 'Anton', sans-serif;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 56px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    color: #000000;
    text-shadow: 2px 2px 0px rgba(255, 255, 255, 0.6), 4px 4px 8px rgba(0, 0, 0, 0.15);
}

.tokenomics-image {
    width: 60%;
    max-width: 1000px;
    height: auto;
    display: block;
    margin: 40px auto 20px auto;
}

@media (max-width: 768px) {
    .tokenomics-image {
        margin: 30px auto 20px auto;
    }
}

.tokenomics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-bottom: 60px;
}

.tokenomics-card {
    background: #fff;
    border: 2px solid var(--primary-red); /* Changed to red */
    border-radius: 12px;
    padding: 40px;
    text-align: center;
    transition: all 0.3s ease;
}

.tokenomics-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(196, 30, 58, 0.3); /* Changed to red shadow */
}

.tokenomics-value {
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-red); /* Changed to red */
    margin-bottom: 10px;
    font-family: 'Space Mono', monospace;
}

.tokenomics-label {
    font-size: 14px;
    color: #666;
    text-transform: uppercase;
    font-weight: 600;
}

.contract-info {
    background: #f8f8f8;
    border: 1px solid #ddd;
    border-radius: 12px;
    padding: 40px;
    margin-bottom: 30px;
}

.contract-info h3 {
    margin-bottom: 30px;
    font-size: 24px;
    color: #000;
}

.contract-box {
    background: #fff;
    border: 1px solid var(--primary-gold);
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
}

.contract-address {
    display: flex;
    align-items: center;
    gap: 15px;
    justify-content: space-between;
}

.contract-address .label {
    font-weight: 600;
    color: #222;
}

.contract-address .address {
    font-family: 'Space Mono', monospace;
    color: var(--primary-gold);
    font-size: 14px;
}

.copy-btn {
    background: var(--primary-gold);
    border: none;
    color: #000;
    padding: 8px 12px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
}

.copy-btn:hover {
    background: var(--primary-red);
    color: white;
}

.contract-links {
    display: flex;
    gap: 15px;
}

.contract-link {
    flex: 1;
    padding: 12px;
    background: rgba(196, 30, 58, 0.1);
    border: 1px solid var(--primary-gold);
    color: var(--primary-gold);
    text-decoration: none;
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s ease;
    font-weight: 600;
}

.contract-link:hover {
    background: var(--primary-gold);
    color: #000;
}

/* GAME SECTION */
.game-section {
    padding: 100px 20px;
    background: #222;
    color: #ffffff;
    position: relative;
    z-index: 4;
    clip-path: polygon(0 7%, 100% 0, 100% 100%, 0 100%);
    margin-top: -150px;
    padding-top: 150px;
    margin-bottom: -50px;
    padding-bottom: 150px;
}

.game-section .container {
    font-size: 21.6px;
    line-height: 1.8;
    color: #ffffff;
    text-align: center;
}

.game-section h2 {
    font-family: 'Anton', sans-serif;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 56px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    color: #ffffff;
    text-shadow: 3px 3px 0px rgba(0, 0, 0, 0.8), 6px 6px 12px rgba(0, 0, 0, 0.6);
}

.game-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.game-card {
    background: #f8f8f8;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 40px;
    text-align: center;
    transition: all 0.3s ease;
}

.game-card:hover {
    border-color: var(--primary-red);
    transform: translateY(-5px);
}

.game-icon {
    font-size: 64px;
    margin-bottom: 20px;
}

.game-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #000;
}

.game-card p {
    color: #222;
    line-height: 1.8;
    margin-bottom: 20px;
}

.game-card .btn {
    margin-top: 10px;
}

/* COMMUNITY SECTION */
.community-section {
    padding: 100px 20px;
    background: #ffffff;
    position: relative;
    z-index: 5;
    clip-path: polygon(0 0, 100% 7%, 100% 100%, 0 100%);
    margin-top: -50px;
    padding-top: 150px;
}

.community-section h2 {
    font-family: 'Anton', sans-serif;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 56px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    color: #000000;
    text-shadow: 2px 2px 0px rgba(255, 255, 255, 0.6), 4px 4px 8px rgba(0, 0, 0, 0.15);
}

.community-subtitle {
    text-align: center;
    color: #666;
    font-size: 18px;
    margin-bottom: 60px;
}

.community-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.community-card {
    background: #f8f8f8;
    border-radius: 16px;
    padding: 40px 30px;
    position: relative;
    border: 1px solid #e0e0e0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
}

.community-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary-red);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.community-card:hover {
    background: #f8f8f8;
}

.community-card:hover::before {
    transform: scaleX(0);
}

.community-icon {
    width: 80px;
    height: 80px;
    background: rgba(196, 30, 58, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin-bottom: 25px;
    transition: all 0.3s ease;
    border: 1px solid rgba(196, 30, 58, 0.1);
    color: var(--primary-red);
}

.community-card:hover .community-icon {
    background: rgba(196, 30, 58, 0.05);
    border-color: rgba(196, 30, 58, 0.1);
}

.community-card h3 {
    font-size: 24px;
    color: #000;
    margin-bottom: 12px;
    font-family: 'Anton', sans-serif;
    letter-spacing: 1px;
}

.community-card p {
    color: #666;
    margin-bottom: 30px;
    font-size: 15px;
    line-height: 1.6;
}

.community-btn {
    margin-top: auto;
    padding: 12px 30px;
    border: 2px solid var(--primary-red);
    color: white;
    font-weight: bold;
    text-decoration: none;
    border-radius: 50px;
    text-transform: uppercase;
    font-size: 14px;
    transition: all 0.3s ease;
    letter-spacing: 1px;
    background: var(--primary-red);
}

.community-btn:hover {
    background: var(--primary-red);
    box-shadow: 0 0 20px rgba(196, 30, 58, 0.4);
    transform: translateY(-2px);
}

/* VISION SECTION */
.vision-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, rgba(196, 30, 58, 0.1), rgba(212, 160, 23, 0.1));
}

.vision-section {
    padding: 100px 20px;
    background: #FFFFFF;
    color: #1a1a1a;
    position: relative;
    z-index: 1;
}

.vision-content {
    text-align: center;
}

.vision-section h2 {
    font-family: 'Anton', sans-serif;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #000;
}

.vision-section p {
    font-size: 24px;
    color: #222;
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.vision-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 600px;
    margin: 0 auto;
}

.vision-stat {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.vision-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-gold);
    font-family: 'Space Mono', monospace;
}

.vision-text {
    color: #666;
    font-size: 16px;
}

/* FEATURED SECTION */
.featured-section {
    padding: 100px 20px;
    background: #222;
    color: white;
    position: relative;
    z-index: 1;
}

/* COPYRIGHT */
.copyright {
    background: #ffffff;
    border-top: 1px solid #e0e0e0;
    padding: 30px 20px;
    text-align: center;
}

.copyright p {
    color: #666;
    font-size: 13px;
    margin: 0;
}

/* FOOTER */
.footer {
    background: #222;
    border-top: 1px solid #333;
    padding: 60px 20px 40px;
    position: relative;
    z-index: 1;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    color: var(--light-text);
    margin-bottom: 20px;
    font-size: 16px;
}

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

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section a {
    color: var(--muted-text);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--primary-gold);
}

.footer-disclaimer {
    border-top: 1px solid var(--border-color);
    padding-top: 30px;
    text-align: center;
}

.footer-disclaimer p {
    color: var(--muted-text);
    font-size: 14px;
    margin-bottom: 10px;
}

/* FEATURED SECTION */
.featured-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, rgba(196, 30, 58, 0.15), rgba(212, 160, 23, 0.15));
}

.featured-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.featured-section h2 {
    font-family: 'Anton', sans-serif;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 30px;
    color: var(--light-text);
}

.featured-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.featured-content p {
    font-size: 18px;
    color: var(--muted-text);
    line-height: 1.8;
}

.featured-image {
    display: flex;
    justify-content: center;
}

.featured-trump {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 0 40px rgba(212, 160, 23, 0.5));
}

/* MOBILE MENU */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.5);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    gap: 5px;
    padding: 8px;
}

.mobile-menu-toggle span {
    display: block;
    width: 24px;
    height: 3px;
    background: #ffffff;
    border-radius: 2px;
    transition: all 0.3s ease;
}

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

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

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

.mobile-nav {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    padding: 20px;
    z-index: 999;
    backdrop-filter: blur(10px);
}

.mobile-nav.active {
    display: block;
}

.mobile-nav ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.mobile-nav ul li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav ul li:last-child {
    border-bottom: none;
}

.mobile-nav ul li a {
    display: block;
    padding: 15px 0;
    color: #ffffff;
    text-decoration: none;
    font-family: 'Anton', sans-serif;
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    /* Desktop/Mobile visibility */
    .desktop-only {
        display: none !important;
    }

    .mobile-only {
        display: flex !important;
    }

    /* Mobile Navigation */
    .nav-links {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .nav-container {
        justify-content: flex-end;
    }

    /* Hero Section - Mobile Layout */
    .hero {
        display: flex;
        flex-direction: column;
        padding: 20px 20px 100px 20px;
        margin-top: 0;
        min-height: calc(100vh + 150px);
        background-size: cover;
        background-position: center top;
        gap: 15px;
    }

    .hero-content {
        order: 1;
        align-items: center;
        text-align: center;
        gap: 20px;
        padding-top: 70px;
    }

    .hero-logo {
        max-width: 90%;
        margin: 0 auto;
    }

    .hero-visual {
        order: 2;
        min-height: auto;
        height: auto;
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-bottom: 25px;
    }

    .trump-image {
        width: 80%;
        max-width: 350px;
        height: auto;
        object-fit: contain;
        margin: 0 auto;
    }

    .hero > .cta-buttons.mobile-only {
        order: 3;
        flex-direction: column;
        width: 100%;
        gap: 15px;
        padding: 0 20px;
    }

    .hero h1 {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    /* Story Section */
    .story-section {
        padding: 100px 20px 60px 20px;
        margin-top: -100px;
        clip-path: polygon(0 3%, 100% 0, 100% 100%, 0 100%);
    }

    .story-section h2 {
        font-size: 36px;
        margin-bottom: 30px;
    }

    .story-section .container > div[style] img {
        margin-top: 30px !important;
        margin-bottom: 30px !important;
    }

    .wiki-quote {
        padding: 20px 25px;
        margin-bottom: 30px;
    }

    .wiki-quote p {
        font-size: 16px;
    }

    .wiki-quote cite {
        font-size: 14px;
    }

    .story-subtitle {
        font-size: 16px;
    }

    .story-grid,
    .doctrine-grid,
    .community-grid {
        grid-template-columns: 1fr;
    }

    /* Tokenomics Section */
    .tokenomics-section {
        padding: 80px 20px;
        padding-top: 100px;
        padding-bottom: 100px;
        clip-path: polygon(0 0, 100% 3%, 100% 100%, 0 100%);
        margin-top: -30px;
    }

    .tokenomics-section h2 {
        font-size: 36px;
        margin-bottom: 30px;
    }

    .tokenomics-section .container {
        font-size: 16px;
    }

    .tokenomics-image {
        margin-top: 30px;
        margin-bottom: 20px;
    }

    /* Game Section */
    .game-section {
        padding: 80px 20px;
        padding-top: 100px;
        padding-bottom: 100px;
        clip-path: polygon(0 3%, 100% 0, 100% 100%, 0 100%);
        margin-top: -100px;
    }

    .game-section h2 {
        font-size: 36px;
        margin-bottom: 30px;
    }

    .game-section .container {
        font-size: 16px;
    }

    .game-section .container > div[style] img {
        width: 100% !important;
    }

    /* Community Section */
    .community-section {
        padding: 80px 20px;
        padding-top: 100px;
        clip-path: polygon(0 0, 100% 3%, 100% 100%, 0 100%);
        margin-top: -30px;
    }

    .community-section h2 {
        font-size: 36px;
    }

    .community-subtitle {
        font-size: 16px;
        margin-bottom: 40px;
    }

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

    .community-card {
        padding: 25px 15px;
    }

    .community-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
        margin-bottom: 15px;
    }

    .community-card h3 {
        font-size: 18px;
    }

    .hero-stats {
        grid-template-columns: 1fr;
    }

    .contract-links {
        flex-direction: column;
    }

    .vision-stats {
        grid-template-columns: 1fr;
    }

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

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

    .floating-circle {
        width: 200px;
        height: 200px;
    }

    .floating-text {
        font-size: 80px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 15px 15px 100px 15px;
        min-height: calc(100vh + 180px);
    }

    .hero-content {
        padding-top: 60px;
    }

    .hero h1 {
        font-size: 28px;
    }

    .hero-subtitle {
        font-size: 14px;
    }

    .hero-logo {
        max-width: 95%;
    }

    .trump-image {
        width: 85%;
        max-width: 300px;
    }

    .hero-visual {
        margin-bottom: 25px;
    }

    .cta-buttons {
        padding: 0 10px;
    }

    .btn {
        width: auto;
        padding: 14px 30px;
        font-size: 14px;
        text-align: center;
    }

    .cta-buttons .btn {
        width: 100%;
        text-align: center;
    }

    .story-section h2,
    .philosophy-section h2,
    .tokenomics-section h2,
    .game-section h2,
    .community-section h2,
    .vision-section h2 {
        font-size: 28px;
    }

    .story-section,
    .tokenomics-section,
    .game-section,
    .community-section {
        padding-left: 15px;
        padding-right: 15px;
    }

    .wiki-quote {
        padding: 15px 20px;
    }

    .wiki-quote p {
        font-size: 14px;
    }

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

    .community-card {
        padding: 30px 20px;
    }

    .community-icon {
        width: 70px;
        height: 70px;
        font-size: 28px;
    }

    .community-card h3 {
        font-size: 20px;
    }
}
