/* CSS Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: #0a0a0a;
    color: #ffffff;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

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

/* Floating Hearts Animation */
.floating-hearts {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.floating-heart {
    position: absolute;
    font-size: 20px;
    animation: floatUp 6s infinite linear;
    opacity: 0;
}

@keyframes floatUp {
    0% {
        opacity: 1;
        transform: translateY(100vh) rotate(0deg);
    }
    100% {
        opacity: 0;
        transform: translateY(-100px) rotate(360deg);
    }
}

/* Gradient Orbs */
.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.3;
    animation: pulse 4s ease-in-out infinite;
}

.orb-1 {
    width: 300px;
    height: 300px;
    background: linear-gradient(45deg, #ff6ba8, #ff8cc8);
    top: 10%;
    left: 20%;
    animation-delay: 0s;
}

.orb-2 {
    width: 200px;
    height: 200px;
    background: linear-gradient(45deg, #8cc8ff, #6ba8ff);
    top: 60%;
    right: 20%;
    animation-delay: 2s;
}

.orb-3 {
    width: 250px;
    height: 250px;
    background: linear-gradient(45deg, #ff6ba8, #8cc8ff);
    bottom: 20%;
    left: 10%;
    animation-delay: 1s;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.3;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.5;
    }
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 107, 168, 0.2);
    z-index: 1000;
    padding: 15px 0;
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-weight: 700;
    color: #ff6ba8;
}

.nav-logo .emoji {
    font-size: 28px;
    animation: bounce 2s infinite;
}

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

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-links a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a:hover {
    color: #ff6ba8;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(45deg, #ff6ba8, #8cc8ff);
    transition: width 0.3s ease;
}

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

.nav-mobile-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.nav-mobile-toggle span {
    width: 25px;
    height: 3px;
    background: #ff6ba8;
    border-radius: 2px;
    transition: all 0.3s ease;
}

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

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-content {
    flex: 1;
    z-index: 2;
}

.hero-emojis {
    margin-bottom: 30px;
}

.floating-emoji {
    font-size: 30px;
    margin: 0 20px;
    display: inline-block;
    animation: floatEmoji 3s ease-in-out infinite;
}

.floating-emoji:nth-child(1) { animation-delay: 0s; }
.floating-emoji:nth-child(2) { animation-delay: 1s; }
.floating-emoji:nth-child(3) { animation-delay: 2s; }

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

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.1;
}

.title-main {
    background: linear-gradient(45deg, #ff6ba8, #8cc8ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
}

.title-sub {
    font-size: 2.5rem;
    color: #ffffff;
    display: block;
    margin-top: 10px;
}

.hero-description {
    font-size: 1.2rem;
    color: #cccccc;
    margin-bottom: 40px;
    max-width: 500px;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
}

.btn {
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-primary {
    background: linear-gradient(45deg, #ff6ba8, #8cc8ff);
    color: #ffffff;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 107, 168, 0.3);
}

.btn-secondary {
    background: transparent;
    color: #ffffff;
    border: 2px solid #ff6ba8;
}

.btn-secondary:hover {
    background: #ff6ba8;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 107, 168, 0.3);
}

.hero-dex {
    margin-top: 20px;
}

.dex-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #ff6ba8;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.dex-link:hover {
    color: #8cc8ff;
}

.dex-link img {
    width: 24px;
    height: 24px;
}

.hero-image {
    flex: 1;
    position: relative;
    text-align: center;
    z-index: 2;
}

.main-image {
    max-width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.image-decorations {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.decoration-emoji {
    position: absolute;
    font-size: 24px;
    animation: floatDecoration 4s ease-in-out infinite;
}

.decoration-emoji:nth-child(1) {
    top: 10%;
    right: 10%;
    animation-delay: 0s;
}

.decoration-emoji:nth-child(2) {
    bottom: 20%;
    left: 10%;
    animation-delay: 1s;
}

.decoration-emoji:nth-child(3) {
    top: 30%;
    left: -10%;
    animation-delay: 2s;
}

.decoration-emoji:nth-child(4) {
    bottom: 10%;
    right: -10%;
    animation-delay: 3s;
}

@keyframes floatDecoration {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
    }
}

/* Section Styles */
section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(45deg, #ff6ba8, #8cc8ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-header p {
    font-size: 1.2rem;
    color: #cccccc;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.section-emoji {
    font-size: 2rem;
    display: block;
    margin-top: 20px;
    animation: bounce 2s infinite;
}

/* About Section */
.about {
    background: linear-gradient(135deg, rgba(255, 107, 168, 0.1), rgba(140, 200, 255, 0.1));
}

.about-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #cccccc;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 30px;
}

.about-cta {
    text-align: center;
    font-size: 1.2rem;
    font-weight: 600;
    color: #ff6ba8;
    margin-bottom: 60px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 107, 168, 0.2);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 107, 168, 0.2);
}

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

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #ff6ba8;
}

.feature-card p {
    color: #cccccc;
    line-height: 1.6;
}

/* Love Story Section */
.love-story {
    background: rgba(10, 10, 10, 0.5);
}

.story-timeline {
    max-width: 1000px;
    margin: 0 auto;
}

.story-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 80px;
    align-items: center;
}

.story-item.reverse {
    direction: rtl;
}

.story-item.reverse > * {
    direction: ltr;
}

.story-content h3 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #ff6ba8;
}

.story-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #cccccc;
    margin-bottom: 30px;
}

.love-meter {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.love-emoji {
    font-size: 1.5rem;
}

.progress-bar {
    flex: 1;
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
}

.progress {
    height: 100%;
    background: linear-gradient(45deg, #ff6ba8, #8cc8ff);
    border-radius: 4px;
    transition: width 2s ease;
}

.infinite-progress {
    animation: infiniteProgress 2s ease-in-out infinite;
}

@keyframes infiniteProgress {
    0% { width: 0%; }
    50% { width: 100%; }
    100% { width: 0%; }
}

.block-info {
    font-size: 0.9rem;
    color: #888;
    font-family: monospace;
}

.story-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.story-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Video Section */
.video-section {
    background: linear-gradient(135deg, rgba(255, 107, 168, 0.1), rgba(140, 200, 255, 0.1));
}

.video-emojis {
    text-align: center;
    margin: 20px 0;
}

.video-emojis .floating-emoji {
    margin: 0 10px;
    font-size: 20px;
}

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

.video-placeholder {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 107, 168, 0.3);
    border-radius: 20px;
    padding: 80px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-bottom: 30px;
}

.video-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(255, 107, 168, 0.1), rgba(140, 200, 255, 0.1));
    z-index: -1;
}

.video-content h3 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #ff6ba8;
}

.video-content p {
    font-size: 1.1rem;
    color: #cccccc;
    margin-bottom: 30px;
}

.play-btn {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(45deg, #ff6ba8, #8cc8ff);
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    transition: transform 0.3s ease;
    margin-bottom: 20px;
}

.play-btn:hover {
    transform: scale(1.1);
}

.video-badge {
    display: inline-block;
    background: rgba(255, 107, 168, 0.2);
    color: #ff6ba8;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.video-description {
    text-align: center;
    color: #cccccc;
    line-height: 1.6;
}

/* Tokenomics Section */
.tokenomics {
    background: rgba(10, 10, 10, 0.5);
}

.love-meter-section {
    text-align: center;
}

.love-meter-section h3 {
    font-size: 2rem;
    margin-bottom: 40px;
    color: #ff6ba8;
}

.tokenomics-chart {
    max-width: 600px;
    margin: 0 auto;
}

.tokenomics-breakdown {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.breakdown-item {
    text-align: center;
}

.breakdown-bar {
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    position: relative;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.breakdown-fill {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    border-radius: 30px;
}

.breakdown-fill.burned {
    width: 75%;
    background: linear-gradient(45deg, #ff6ba8, #ff8cc8);
}

.breakdown-fill.community {
    width: 20%;
    background: linear-gradient(45deg, #8cc8ff, #6ba8ff);
}

.breakdown-fill.charity {
    width: 5%;
    background: linear-gradient(45deg, #ff6ba8, #8cc8ff);
}

.breakdown-percentage {
    font-size: 1.2rem;
    font-weight: 600;
    color: white;
    z-index: 2;
    position: relative;
}

.breakdown-label {
    font-weight: 500;
    color: #cccccc;
}

/* Roadmap Section */
.roadmap {
    background: linear-gradient(135deg, rgba(255, 107, 168, 0.1), rgba(140, 200, 255, 0.1));
}

.roadmap-timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.roadmap-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, #ff6ba8, #8cc8ff);
    transform: translateX(-50%);
}

.roadmap-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 60px;
    position: relative;
}

.roadmap-item:nth-child(even) {
    flex-direction: row-reverse;
}

.roadmap-quarter {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #ff6ba8, #8cc8ff);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 600;
    color: white;
    z-index: 2;
    position: relative;
}

.roadmap-content {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 107, 168, 0.2);
    border-radius: 20px;
    padding: 30px;
    margin: 0 40px;
}

.roadmap-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #ff6ba8;
}

.roadmap-content ul {
    list-style: none;
}

.roadmap-content li {
    padding: 8px 0;
    color: #cccccc;
    position: relative;
    padding-left: 20px;
}

.roadmap-content li::before {
    content: '💖';
    position: absolute;
    left: 0;
    top: 8px;
}

/* NFT Collection Section */
.nft-collection {
    background: rgba(10, 10, 10, 0.5);
}

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

.nft-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 107, 168, 0.2);
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.nft-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 107, 168, 0.3);
}

.nft-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1;
}

.nft-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.nft-card:hover .nft-image img {
    transform: scale(1.1);
}

.nft-number {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(0, 0, 0, 0.7);
    color: #ff6ba8;
    padding: 5px 10px;
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 600;
}

.nft-heart {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 1.5rem;
    animation: heartbeat 2s infinite;
}

@keyframes heartbeat {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

.nft-content {
    padding: 25px;
}

.nft-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #ff6ba8;
}

.nft-content p {
    color: #cccccc;
    margin-bottom: 20px;
    line-height: 1.5;
}

.nft-price {
    font-size: 1.1rem;
    font-weight: 600;
    color: #8cc8ff;
    margin-bottom: 20px;
}

.nft-btn {
    width: 100%;
    padding: 12px;
    background: linear-gradient(45deg, #ff6ba8, #8cc8ff);
    border: none;
    border-radius: 10px;
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.nft-btn:hover {
    transform: translateY(-2px);
}

.nft-view-all {
    text-align: center;
}

/* How to Buy Section */
.how-to-buy {
    background: linear-gradient(135deg, rgba(255, 107, 168, 0.1), rgba(140, 200, 255, 0.1));
}

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

.step-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 107, 168, 0.2);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    transition: transform 0.3s ease;
}

.step-card:hover {
    transform: translateY(-10px);
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #ff6ba8, #8cc8ff);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 600;
    color: white;
    margin: 0 auto 20px;
}

.step-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #ff6ba8;
}

.step-content p {
    color: #cccccc;
    line-height: 1.5;
}

.contract-section {
    text-align: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 107, 168, 0.2);
    border-radius: 20px;
    padding: 40px;
    max-width: 600px;
    margin: 0 auto;
}

.contract-section h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #ff6ba8;
}

.contract-address {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 107, 168, 0.3);
    border-radius: 10px;
    padding: 15px;
    font-family: monospace;
    font-size: 0.9rem;
    color: #8cc8ff;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    word-break: break-all;
}

.copy-btn {
    background: none;
    border: none;
    color: #ff6ba8;
    cursor: pointer;
    padding: 5px;
    border-radius: 5px;
    transition: background 0.3s ease;
    margin-left: 10px;
    flex-shrink: 0;
}

.copy-btn:hover {
    background: rgba(255, 107, 168, 0.2);
}

/* Community Section */
.community {
    background: rgba(10, 10, 10, 0.5);
}

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

.social-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 107, 168, 0.2);
    border-radius: 20px;
    padding: 30px;
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    align-items: center;
    gap: 20px;
}

.social-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 107, 168, 0.2);
}

.social-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
}

.telegram .social-icon {
    background: linear-gradient(45deg, #0088cc, #00aaff);
}

.twitter .social-icon {
    background: linear-gradient(45deg, #1da1f2, #55acee);
}

.discord .social-icon {
    background: linear-gradient(45deg, #5865f2, #7289da);
}

.dexscreener .social-icon {
    background: linear-gradient(45deg, #ff6ba8, #8cc8ff);
}

.social-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: #ff6ba8;
}

.social-content p {
    color: #cccccc;
    margin-bottom: 10px;
}

.social-action {
    color: #8cc8ff;
    font-weight: 500;
    font-size: 0.9rem;
}

/* Charity Section */
.charity {
    background: linear-gradient(135deg, rgba(255, 107, 168, 0.1), rgba(140, 200, 255, 0.1));
    text-align: center;
}

.charity-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.charity-stat {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 107, 168, 0.2);
    border-radius: 20px;
    padding: 30px;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ff6ba8;
    margin-bottom: 10px;
}

.stat-label {
    color: #cccccc;
    font-weight: 500;
}

/* Footer */
.footer {
    background: rgba(10, 10, 10, 0.9);
    border-top: 1px solid rgba(255, 107, 168, 0.2);
    padding: 40px 0;
    text-align: center;
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 700;
    color: #ff6ba8;
    margin-bottom: 15px;
}

.footer-logo .emoji {
    font-size: 1.8rem;
}

.footer p {
    color: #cccccc;
    margin-bottom: 20px;
}

.footer-socials {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.footer-socials a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 107, 168, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ff6ba8;
    text-decoration: none;
    transition: background 0.3s ease, transform 0.3s ease;
}

.footer-socials a:hover {
    background: #ff6ba8;
    color: white;
    transform: scale(1.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .nav-mobile-toggle {
        display: flex;
    }
    
    .hero {
        text-align: center;
        padding: 100px 0 60px;
    }
    
    .hero .container {
        flex-direction: column;
        gap: 40px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .title-sub {
        font-size: 1.8rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .story-item {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .story-item.reverse {
        direction: ltr;
    }
    
    .roadmap-timeline::before {
        left: 30px;
    }
    
    .roadmap-item {
        flex-direction: row;
        align-items: flex-start;
    }
    
    .roadmap-quarter {
        width: 60px;
        height: 60px;
        font-size: 1rem;
        margin-left: 0;
    }
    
    .roadmap-content {
        margin-left: 30px;
        margin-right: 0;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .social-card {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .title-sub {
        font-size: 1.5rem;
    }
    
    .btn {
        padding: 12px 25px;
        font-size: 0.9rem;
    }
    
    .features-grid,
    .steps-grid,
    .nft-grid {
        grid-template-columns: 1fr;
    }
    
    .contract-address {
        font-size: 0.8rem;
        flex-direction: column;
        gap: 10px;
    }
    
    .copy-btn {
        margin-left: 0;
    }
}

/* Utility Classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mt-1 { margin-top: 10px; }
.mt-2 { margin-top: 20px; }
.mt-3 { margin-top: 30px; }
.mb-1 { margin-bottom: 10px; }
.mb-2 { margin-bottom: 20px; }
.mb-3 { margin-bottom: 30px; }

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}
