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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
    background: linear-gradient(135deg, #682287 0%, #4a1860 50%, #2d0f3d 100%);
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
    color: #FFFFFF;
}

body::before {
    content: '';
    position: fixed;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(104, 34, 135, 0.4) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(255, 71, 87, 0.3) 0%, transparent 50%);
    animation: float 20s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}

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

/* Navigation */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(104, 34, 135, 0.15);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding: 20px 0;
    overflow: visible;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
    z-index: 10;
}

.logo img {
    height: 80px;
    width: auto;
    filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.3));
    transition: transform 0.3s ease;
    position: absolute;
    top: -10px;
    left: 0;
}

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

.logo-text {
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: #FFFFFF;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    display: none;
}

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

.nav-links a {
    color: #FFFFFF;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a:hover {
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
}

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

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

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    text-align: right;
    padding: 120px 60px 60px;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.hero-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.hero-video-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(104, 34, 135, 0.4) 0%, rgba(45, 15, 61, 0.5) 100%);
    z-index: 1;
}

.hero-video-bg video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 100vh;
    min-width: 100%;
    min-height: 100%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    object-fit: cover;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    padding: 0 20px;
    margin: 0 auto;
    text-align: left;
}

.hero-content h1 {
    font-size: 5.5rem;
    font-weight: 700;
    letter-spacing: 3px;
    margin-bottom: 20px;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.9), 
                 0 0 60px rgba(104, 34, 135, 0.8),
                 0 2px 4px rgba(0, 0, 0, 1);
    animation: fadeInUp 1s ease;
    line-height: 1.2;
    text-align: left;
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 40px;
    opacity: 0.95;
    animation: fadeInUp 1s ease 0.2s both;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.9),
                 0 1px 3px rgba(0, 0, 0, 1);
    max-width: 50%;
}

.cta-button {
    display: inline-block;
    padding: 10px 25px;
    background: linear-gradient(135deg, #FF4757 0%, #FF6B7A 100%);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 5px;
    color: #FFFFFF;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    animation: fadeInUp 1s ease 0.4s both;
    box-shadow: 0 4px 15px rgba(255, 71, 87, 0.4);
}

.cta-button:hover {
    background: linear-gradient(135deg, #FF6B7A 0%, #FF4757 100%);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 71, 87, 0.5);
}

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

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

/* Video Section */
#video-section {
    position: relative;
    padding: 100px 20px;
    min-height: 60vh;
    z-index: 1;
    background-image: url('../images/back3.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.video-wrapper-torn {
    flex: 0 0 36%;
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
}

.video-wrapper-torn::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: linear-gradient(135deg, #682287 0%, #FF4757 100%);
    clip-path: polygon(
        0% 5%, 2% 2%, 4% 4%, 6% 1%, 8% 3%, 10% 1%, 12% 4%, 14% 2%, 16% 5%, 18% 2%, 20% 4%, 22% 1%, 24% 3%, 26% 5%, 28% 2%, 30% 4%, 32% 1%, 34% 3%, 36% 5%, 38% 2%, 40% 4%, 
        42% 2%, 44% 5%, 46% 1%, 48% 3%, 50% 5%, 52% 2%, 54% 4%, 56% 1%, 58% 3%, 60% 5%, 62% 2%, 64% 4%, 66% 1%, 68% 5%, 70% 2%, 72% 4%, 74% 1%, 76% 3%, 78% 5%, 80% 2%, 
        82% 4%, 84% 1%, 86% 3%, 88% 5%, 90% 2%, 92% 4%, 94% 1%, 96% 3%, 98% 5%, 100% 2%,
        100% 98%, 98% 96%, 96% 98%, 94% 95%, 92% 97%, 90% 95%, 88% 98%, 86% 96%, 84% 98%, 82% 95%, 80% 97%, 78% 95%, 76% 98%, 74% 96%, 72% 98%, 70% 95%, 68% 97%, 66% 95%, 
        64% 98%, 62% 96%, 60% 98%, 58% 95%, 56% 97%, 54% 95%, 52% 98%, 50% 96%, 48% 98%, 46% 95%, 44% 97%, 42% 95%, 40% 98%, 38% 96%, 36% 98%, 34% 95%, 32% 97%, 30% 95%, 
        28% 98%, 26% 96%, 24% 98%, 22% 95%, 20% 97%, 18% 95%, 16% 98%, 14% 96%, 12% 98%, 10% 95%, 8% 97%, 6% 95%, 4% 98%, 2% 96%, 0% 98%
    );
    z-index: -1;
    filter: drop-shadow(0 0 20px rgba(255, 71, 87, 0.5));
    animation: tornGlow 3s ease-in-out infinite;
}

@keyframes tornGlow {
    0%, 100% {
        filter: drop-shadow(0 0 20px rgba(255, 71, 87, 0.5));
    }
    50% {
        filter: drop-shadow(0 0 30px rgba(104, 34, 135, 0.7));
    }
}

.video-wrapper-torn iframe {
    width: 100%;
    height: 100%;
    border-radius: 8px;
    position: relative;
    z-index: 1;
}

.video-description {
    flex: 1;
    padding: 20px 40px;
}

.video-description h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #FFFFFF;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
    text-transform: uppercase;
    line-height: 1.1;
}

.video-description p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #FFFFFF;
    opacity: 0.95;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

.video-image {
    flex: 0 0 9%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-image img {
    width: 100%;
    max-width: 130px;
    height: auto;
    transition: all 0.3s ease;
    filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.6));
}

.video-image img:hover {
    transform: translateY(-10px);
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.7));
}

/* Story/Artbook Section */
.story-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-attachment: scroll;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    overflow: hidden;
}

#story {
    background-image: url('../images/Asset17.png');
}

/* Parallax Section */
.parallax-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    overflow: hidden;
}

#Characters {
    background-image: url('../images/Back2.jpg');
}

#whitepaper {
    background-image: url('../images/white4.jpg');
}

.parallax-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(104, 34, 135, 0.5) 0%,
        rgba(45, 15, 61, 0.45) 50%,
        rgba(0, 0, 0, 0.4) 100%
    );
    backdrop-filter: blur(2px) brightness(0.85);
    -webkit-backdrop-filter: blur(2px) brightness(0.85);
    z-index: 1;
}

.story-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(104, 34, 135, 0.5) 0%,
        rgba(45, 15, 61, 0.45) 50%,
        rgba(0, 0, 0, 0.4) 100%
    );
    backdrop-filter: blur(2px) brightness(0.85);
    -webkit-backdrop-filter: blur(2px) brightness(0.85);
    z-index: 1;
}

.story-flex {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 60px;
    padding: 60px 0;
    position: relative;
    z-index: 2;
}

.story-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 20px 0;
}

.story-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 24px;
    color: #FFFFFF;
    text-transform: uppercase;
    text-shadow: 0 2px 10px rgba(0,0,0,0.8);
}

.story-desc {
    font-size: 1.2rem;
    color: #fff;
    opacity: 0.95;
    line-height: 1.7;
    text-shadow: 0 2px 10px rgba(0,0,0,0.8);
}

.story-image {
    flex: 0 0 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.story-image img {
    position: relative;
    z-index: 2;
    max-width: 600px;
}

/* Whitepaper Section */
.whitepaper-flex {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 60px;
    padding: 60px 0;
    position: relative;
    z-index: 2;
}

.whitepaper-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 20px 0;
}

.whitepaper-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 24px;
    color: #FFFFFF;
    text-transform: uppercase;
    text-shadow: 0 2px 10px rgba(0,0,0,0.8);
}

.whitepaper-desc {
    font-size: 1.2rem;
    color: #fff;
    opacity: 0.95;
    line-height: 1.7;
    text-shadow: 0 2px 10px rgba(0,0,0,0.8);
}

.whitepaper-image {
    flex: 0 0 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.whitepaper-image img {
    position: relative;
    z-index: 2;
    max-width: 300px;
}

/* Section Styling */
section {
    position: relative;
    z-index: 1;
    padding: 80px 20px;
}

#tokenomics {
    background: linear-gradient(135deg, #201140 0%, #2d0f3d 50%, #1a0933 100%);
}

h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    letter-spacing: 2px;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
    color: #FFFFFF;
    background-clip: text;
}

/* Tokenomics Section */
.tokenomics-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    margin-top: 50px;
}

.tokenomics-chart {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 20px;
    background: rgba(104, 34, 135, 0.1);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
}

.chart-container {
    position: relative;
    width: 100%;
    max-width: 450px;
    aspect-ratio: 1;
}

#tokenomicsChart {
    width: 100% !important;
    height: 100% !important;
}

.tokenomics-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
    font-size: 1.1rem;
    opacity: 0.9;
    line-height: 1.8;
}

.tokenomics-table {
    overflow-x: auto;
}

.tokenomics-table table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: #1a0933;
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(168,85,247,0.18);
    overflow: hidden;
    border: 3px solid #a855f7;
}

.tokenomics-table th, .tokenomics-table td {
    padding: 14px 12px;
    font-size: 1.08rem;
    color: #fff;
}

.tokenomics-table th {
    background: #4a1860;
    color: #fff;
    font-weight: 800;
    border-bottom: 3px solid #ffb3c0;
    text-align: left;
    letter-spacing: 1px;
    font-size: 1.12rem;
    text-shadow: 0 2px 8px #68228799;
}

.tokenomics-table td {
    background: linear-gradient(90deg, rgba(168,85,247,0.10) 0%, rgba(104,34,135,0.10) 100%);
    border-bottom: 1px solid #a855f7;
    color: #f3eaff;
    font-weight: 500;
}

.tokenomics-table tr:last-child td {
    border-bottom: none;
}

.tokenomics-table .center {
    text-align: center;
}

.tokenomics-table tr:hover td {
    background: #a855f7 !important;
    color: #fff !important;
    transition: background 0.2s, color 0.2s;
}

/* Features Section */
.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.feature-card {
    background: rgba(104, 34, 135, 0.15);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.feature-card:hover {
    background: rgba(104, 34, 135, 0.25);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 71, 87, 0.3);
    border-color: rgba(255, 71, 87, 0.4);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    opacity: 0.9;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 500;
}

.feature-card p {
    opacity: 0.85;
    line-height: 1.6;
}

.feature-card .token-price {
    display: block;
    font-size: 2.5rem;
    font-family: 'Poppins', 'Arial Black', 'Arial', sans-serif;
    font-weight: 900;
    color: #ff4757;
    letter-spacing: 1px;
    margin-top: 12px;
    text-align: center;
    text-shadow: 0 3px 10px #68228766;
    background: linear-gradient(135deg, #ff4757 0%, #ff6b7a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.feature-card .token-price strong {
    color: #ffb3c0;
    font-weight: 900;
    text-shadow: 0 4px 12px #ff4757aa;
}

.feature-card .raised-amount {
    font-size: 1.2rem;
    font-weight: 600;
    color: #4caf50;
    margin-top: 8px;
    text-align: center;
    text-shadow: 0 2px 6px rgba(76, 175, 80, 0.5);
}

/* Character Sections */
.character-section {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1400px;
    width: 100%;
    padding: 60px 40px;
    gap: 60px;
}

.character-left,
.character-right {
    flex: 0 0 300px;
    text-align: center;
}

.character-left img,
.character-right img {
    width: 100%;
    max-width: 300px;
    height: auto;
    border-radius: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
    filter: drop-shadow(0 0 20px rgba(104, 34, 135, 0.6));
}

.character-left img:hover,
.character-right img:hover {
    transform: scale(1.05);
    border-color: rgba(255, 71, 87, 0.6);
    filter: drop-shadow(0 0 30px rgba(255, 71, 87, 0.8));
}

.character-left h3,
.character-right h3 {
    margin-top: 20px;
    font-size: 1.5rem;
    font-weight: 600;
    color: #FFFFFF;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
    letter-spacing: 1px;
}

.character-center {
    flex: 1;
    text-align: center;
    padding: 40px;
}

.character-center h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: 2px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.8);
    color: #FFFFFF;
    background-clip: text;
}

.character-center p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #FFFFFF;
    opacity: 0.95;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

/* Community Section */
#community {
    position: relative;
    padding: 80px 20px;
    background-image: url('../images/back1.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

#community::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(104, 34, 135, 0.7) 0%,
        rgba(45, 15, 61, 0.65) 50%,
        rgba(0, 0, 0, 0.6) 100%
    );
    backdrop-filter: blur(2px) brightness(0.7);
    -webkit-backdrop-filter: blur(2px) brightness(0.7);
    z-index: 1;
}

.community-content {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.community-text {
    flex: 1;
    order: 2;
}

.community-text h2 {
    margin-bottom: 30px;
    text-align: left;
}

.community-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    opacity: 0.95;
}

.community-image {
    flex: 0 0 350px;
    order: 1;
}

.community-image img {
    width: 100%;
    height: auto;
}

/* Social Links Section */
#social-links {
    padding: 40px 20px 80px;
    position: relative;
    z-index: 1;
    background: linear-gradient(135deg, #201140 0%, #2d0f3d 50%, #1a0933 100%);
}

.social-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 50px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(104, 34, 135, 0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #FFFFFF;
    font-size: 24px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.social-links a:hover {
    background: rgba(255, 71, 87, 0.5);
    border-color: #FF4757;
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 8px 25px rgba(255, 71, 87, 0.4);
    color: #FFFFFF;
}

/* Footer */
footer {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 40px 20px;
    background: rgba(104, 34, 135, 0.3);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 71, 87, 0.3);
}

footer p {
    opacity: 0.7;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #FFFFFF;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Responsive */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: rgba(104, 34, 135, 0.95);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 20px;
        gap: 20px;
        transform: translateY(-100%);
        opacity: 0;
        transition: all 0.3s ease;
        border-bottom: 1px solid rgba(255, 71, 87, 0.3);
    }

    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
    }

    .hero {
        padding: 120px 20px 60px;
        justify-content: center;
        text-align: left;
    }

    .hero-content {
        text-align: left;
    }

    .hero-content h1 {
        font-size: 3rem;
        text-align: left;
    }

    .hero-content p {
        font-size: 1.2rem;
        max-width: 100%;
    }

    #video-section {
        background-attachment: fixed;
        min-height: auto;
        padding: 80px 20px;
    }

    .video-content {
        flex-direction: column;
        gap: 40px;
    }

    .video-wrapper-torn {
        flex: none;
        width: 100%;
        max-width: 500px;
    }

    .video-description {
        padding: 20px;
        text-align: center;
    }

    .video-description h2 {
        font-size: 2rem;
    }

    .video-description p {
        font-size: 1rem;
    }

    /* Hide right-side image on small screens to keep layout clean */
    .video-image {
        display: none;
    }

    .story-flex {
        flex-direction: column;
        gap: 30px;
        padding: 40px 20px;
    }

    .story-image {
        flex: none;
        width: 100%;
    }

    .story-image img {
        max-width: 300px;
    }

    .story-content {
        align-items: center;
        text-align: center;
    }

    .story-title {
        font-size: 2rem;
    }

    .story-desc {
        font-size: 1rem;
    }

    .whitepaper-flex {
        flex-direction: column;
        gap: 30px;
        padding: 40px 20px;
    }

    .whitepaper-image {
        flex: none;
        width: 100%;
    }

    .whitepaper-image img {
        max-width: 200px;
    }

    .whitepaper-content {
        align-items: center;
        text-align: center;
    }

    .whitepaper-title {
        font-size: 2rem;
    }

    .whitepaper-desc {
        font-size: 1rem;
    }

    h2 {
        font-size: 2rem;
    }

    .tokenomics-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .tokenomics-chart {
        padding: 30px 15px;
    }
    
    .chart-container {
        max-width: 100%;
        width: 100%;
    }

    .character-section {
        flex-direction: column;
        gap: 40px;
        padding: 40px 20px;
    }

    .character-left,
    .character-right {
        flex: none;
    }

    .character-left img,
    .character-right img {
        max-width: 250px;
    }

    .character-center {
        padding: 30px 20px;
    }

    .character-center h2 {
        font-size: 2rem;
    }

    .character-center p {
        font-size: 1rem;
    }

    .community-content {
        flex-direction: column;
        gap: 40px;
    }

    .community-image {
        flex: none;
        width: 100%;
        max-width: 400px;
        order: 0;
    }

    .community-text {
        text-align: center;
        order: 0;
    }

    .social-links a {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }

    .parallax-section {
        background-attachment: fixed;
    }
}
