@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --kojin-red: #ff4757;
    --kojin-gold: #ffd93d;
    --kojin-dark-red: #ee5a6f;
    --kojin-dark-gold: #feca57;
    --dark-navy: #1e272e;
    --darker-navy: #151a1e;
    --darkest-navy: #0a0e12;
    --text-primary: #ffffff;
    --text-secondary: #b2bec3;
    --text-muted: #636e72;
    --accent-blue: #6c5ce7;
    --accent-purple: #a29bfe;
    --success-green: #00b894;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: var(--darkest-navy);
    color: var(--text-primary);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Dynamic Background */
.bg-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 71, 87, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 217, 61, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(108, 92, 231, 0.08) 0%, transparent 60%),
        linear-gradient(135deg, var(--darkest-navy) 0%, var(--darker-navy) 50%, var(--dark-navy) 100%);
}

/* Floating Elements */
.floating-elements {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
    overflow: hidden;
}

.floating-sword {
    position: absolute;
    width: 250px;
    height: 3px;
    background: linear-gradient(90deg, transparent, rgba(255, 217, 61, 0.4), transparent);
    transform-origin: left center;
    animation: floatSword 25s ease-in-out infinite;
    filter: blur(1px);
}

.sword-1 { top: 15%; left: 5%; animation-delay: 0s; }
.sword-2 { top: 65%; right: 5%; animation-delay: 8s; }
.sword-3 { top: 40%; left: 25%; animation-delay: 16s; }

@keyframes floatSword {
    0%, 100% { transform: translateY(0) rotate(15deg); opacity: 0.4; }
    25% { transform: translateY(-40px) rotate(25deg); opacity: 0.7; }
    50% { transform: translateY(-20px) rotate(10deg); opacity: 0.5; }
    75% { transform: translateY(20px) rotate(30deg); opacity: 0.8; }
}

.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--kojin-gold);
    border-radius: 50%;
    animation: floatParticle 18s linear infinite;
    box-shadow: 0 0 10px rgba(255, 217, 61, 0.5);
}

@keyframes floatParticle {
    0% { transform: translateY(100vh) translateX(0) scale(0); opacity: 0; }
    10% { opacity: 1; transform: scale(1); }
    90% { opacity: 1; }
    100% { transform: translateY(-100px) translateX(100px) scale(0); opacity: 0; }
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1.25rem 2rem;
    background: rgba(10, 14, 18, 0.85);
    backdrop-filter: blur(30px) saturate(180%);
    border-bottom: 1px solid rgba(255, 217, 61, 0.2);
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

nav.scrolled {
    background: rgba(10, 14, 18, 0.95);
    border-bottom-color: rgba(255, 71, 87, 0.3);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    padding: 1rem 2rem;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-primary);
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    letter-spacing: -0.5px;
}

.logo-icon {
    width: 45px;
    height: 45px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 0 30px rgba(255, 71, 87, 0.6);
    animation: logoGlow 3s ease-in-out infinite;
    position: relative;
}

.logo-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

@keyframes logoGlow {
    0%, 100% { box-shadow: 0 0 30px rgba(255, 71, 87, 0.6); }
    50% { box-shadow: 0 0 50px rgba(255, 71, 87, 0.9), 0 0 70px rgba(255, 217, 61, 0.5); }
}

.logo:hover {
    transform: translateY(-2px);
}

.logo:hover .logo-icon {
    transform: rotate(15deg) scale(1.1);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 0.5rem;
    background: rgba(30, 39, 46, 0.6);
    border-radius: 16px;
    padding: 0.5rem;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9375rem;
    padding: 0.625rem 1.5rem;
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.nav-links a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 71, 87, 0.2), rgba(255, 217, 61, 0.15));
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 12px;
    z-index: -1;
}

.nav-links a:hover::before,
.nav-links a.active::before {
    opacity: 1;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--text-primary);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 10rem 2rem 6rem;
    position: relative;
}

.hero-content {
    max-width: 1000px;
    animation: heroEntrance 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes heroEntrance {
    0% { opacity: 0; transform: translateY(50px) scale(0.95); }
    100% { opacity: 1; transform: translateY(0) scale(1); }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, rgba(255, 71, 87, 0.15), rgba(255, 217, 61, 0.1));
    border: 1px solid rgba(255, 217, 61, 0.3);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--kojin-gold);
    margin-bottom: 2rem;
    animation: slideInUp 1s ease-out 0.2s both;
}

.badge-icon {
    font-size: 1rem;
    animation: pulse 2s ease-in-out infinite;
}

.hero h1 {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--kojin-red) 0%, var(--kojin-gold) 50%, var(--kojin-red) 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 8s ease-in-out infinite, slideInUp 1s ease-out 0.4s both;
    letter-spacing: -2px;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

@keyframes slideInUp {
    0% { opacity: 0; transform: translateY(30px); }
    100% { opacity: 1; transform: translateY(0); }
}

.hero-tagline {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--text-secondary);
    animation: slideInUp 1s ease-out 0.6s both;
}

.tagline-highlight {
    background: linear-gradient(135deg, var(--kojin-red), var(--kojin-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
}

.subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
    animation: slideInUp 1s ease-out 0.8s both;
    line-height: 1.8;
}

.cta-container {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: slideInUp 1s ease-out 1s both;
    margin-bottom: 4rem;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.0625rem;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    letter-spacing: 0.3px;
}

.cta-primary {
    background: linear-gradient(135deg, var(--kojin-red), var(--kojin-gold));
    color: var(--darkest-navy);
    box-shadow: 0 15px 40px rgba(255, 71, 87, 0.4);
}

.cta-primary:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 20px 50px rgba(255, 71, 87, 0.6);
}

.cta-secondary {
    background: rgba(255, 255, 255, 0.08);
    color: var(--text-primary);
    border: 2px solid rgba(255, 217, 61, 0.3);
    backdrop-filter: blur(20px);
}

.cta-secondary:hover {
    background: rgba(255, 217, 61, 0.15);
    border-color: rgba(255, 217, 61, 0.5);
    transform: translateY(-4px);
}

.arrow, .play-icon {
    transition: transform 0.3s ease;
}

.cta-button:hover .arrow {
    transform: translateX(5px);
}

.cta-button:hover .play-icon {
    transform: scale(1.2);
}

/* Hero Stats */
.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    animation: slideInUp 1s ease-out 1.2s both;
}

.hero-stats .stat-item {
    text-align: center;
}

.hero-stats .stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--kojin-gold), var(--kojin-dark-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    margin-bottom: 0.5rem;
}

.hero-stats .stat-label {
    color: var(--text-secondary);
    font-size: 0.9375rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Section Styling */
.discord-native,
.bot-showcase,
.testimonials {
    padding: 8rem 2rem;
    position: relative;
}

.features-container {
    max-width: 1280px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.section-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: linear-gradient(135deg, rgba(108, 92, 231, 0.2), rgba(162, 155, 254, 0.15));
    border: 1px solid rgba(108, 92, 231, 0.3);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--accent-blue);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.section-header h2 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--kojin-red), var(--kojin-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -1px;
}

.section-header p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 720px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: linear-gradient(135deg, rgba(30, 39, 46, 0.6), rgba(21, 26, 30, 0.4));
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 2.5rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 71, 87, 0.1), rgba(255, 217, 61, 0.05));
    opacity: 0;
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 71, 87, 0.3);
    box-shadow: 0 25px 50px rgba(255, 71, 87, 0.3);
}

.feature-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 2;
}

.feature-icon svg {
    width: 50px;
    height: 50px;
    stroke: var(--kojin-gold);
    stroke-width: 2;
    filter: drop-shadow(0 4px 16px rgba(255, 217, 61, 0.6));
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 10px 30px rgba(255, 71, 87, 0.4);
}

.feature-card:hover .feature-icon svg {
    stroke: var(--kojin-red);
    filter: drop-shadow(0 4px 12px rgba(255, 71, 87, 0.6));
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
    position: relative;
    z-index: 2;
}

.feature-card p {
    color: var(--text-secondary);
    line-height: 1.75;
    position: relative;
    z-index: 2;
    margin-bottom: 1rem;
}

.feature-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(0, 184, 148, 0.2);
    border: 1px solid rgba(0, 184, 148, 0.3);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--success-green);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    z-index: 2;
}

/* Bot Cards */
.bots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 2.5rem;
    margin-bottom: 4rem;
}

.bot-card {
    background: linear-gradient(135deg, rgba(30, 39, 46, 0.6), rgba(21, 26, 30, 0.4));
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 28px;
    padding: 2.5rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.bot-card.featured {
    border-color: rgba(255, 217, 61, 0.5);
    box-shadow: 0 0 50px rgba(255, 217, 61, 0.2);
}

.featured-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, var(--kojin-red), var(--kojin-gold));
    color: var(--darkest-navy);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 10;
}

.bot-card:hover {
    transform: translateY(-12px);
    border-color: rgba(255, 71, 87, 0.4);
    box-shadow: 0 30px 60px rgba(255, 71, 87, 0.3);
}

.bot-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2rem;
    gap: 1rem;
}

.bot-avatar {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    overflow: hidden;
    border: 3px solid rgba(255, 217, 61, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.bot-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bot-card:hover .bot-avatar {
    transform: scale(1.1) rotate(-5deg);
    border-color: rgba(255, 217, 61, 0.6);
    box-shadow: 0 10px 30px rgba(255, 217, 61, 0.4);
}

.bot-info h3 {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.bot-status {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 1rem;
    background: rgba(0, 184, 148, 0.2);
    color: var(--success-green);
    border-radius: 50px;
    font-size: 0.8125rem;
    font-weight: 700;
    border: 1px solid rgba(0, 184, 148, 0.3);
}

.bot-status::before {
    content: '●';
    animation: pulse 2s ease-in-out infinite;
}

.bot-price {
    font-size: 2rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--kojin-gold), var(--kojin-dark-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    white-space: nowrap;
}

.bot-price span {
    font-size: 1rem;
    opacity: 0.7;
}

.bot-description {
    color: var(--text-secondary);
    line-height: 1.75;
    margin-bottom: 1.5rem;
    font-size: 1.0625rem;
}

.bot-features {
    list-style: none;
    margin-bottom: 2rem;
}

.bot-features li {
    padding: 0.75rem 0;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
}

.bot-features li:hover {
    color: var(--text-primary);
    transform: translateX(5px);
}

.check {
    color: var(--success-green);
    font-weight: 900;
    font-size: 1.125rem;
}

.bot-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--kojin-red), var(--kojin-gold));
    color: var(--darkest-navy);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
    justify-content: center;
}

.bot-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(255, 71, 87, 0.5);
}

/* Bundle Offer */
.bundle-offer {
    background: linear-gradient(135deg, rgba(255, 71, 87, 0.15), rgba(255, 217, 61, 0.1));
    border: 2px solid rgba(255, 217, 61, 0.4);
    border-radius: 28px;
    padding: 3rem;
    backdrop-filter: blur(20px);
    box-shadow: 0 20px 60px rgba(255, 217, 61, 0.2);
}

.bundle-content {
    display: grid;
    grid-template-columns: auto 1fr auto auto;
    gap: 2rem;
    align-items: center;
}

.bundle-icon {
    font-size: 4rem;
}

.bundle-info h3 {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.bundle-info p {
    color: var(--text-secondary);
    font-size: 1.0625rem;
}

.bundle-price {
    text-align: right;
}

.original-price {
    display: block;
    color: var(--text-muted);
    text-decoration: line-through;
    font-size: 1.125rem;
    margin-bottom: 0.25rem;
}

.bundle-price-main {
    font-size: 3rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--kojin-gold), var(--kojin-dark-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bundle-price-main span {
    font-size: 1.25rem;
    opacity: 0.8;
}

.bundle-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem 2.5rem;
    background: linear-gradient(135deg, var(--kojin-red), var(--kojin-gold));
    color: var(--darkest-navy);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 800;
    font-size: 1.125rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
}

.bundle-cta:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(255, 71, 87, 0.5);
}

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: linear-gradient(135deg, rgba(30, 39, 46, 0.6), rgba(21, 26, 30, 0.4));
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 2.5rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 217, 61, 0.3);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.stars {
    color: var(--kojin-gold);
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    letter-spacing: 3px;
}

.testimonial-card p {
    color: var(--text-secondary);
    font-size: 1.0625rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--kojin-red), var(--kojin-gold));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.author-name {
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.author-role {
    color: var(--text-muted);
    font-size: 0.875rem;
}

/* CTA Banner */
.cta-banner {
    padding: 8rem 2rem;
    background: linear-gradient(135deg, rgba(255, 71, 87, 0.1), rgba(255, 217, 61, 0.05));
    border-top: 1px solid rgba(255, 217, 61, 0.2);
    border-bottom: 1px solid rgba(255, 217, 61, 0.2);
}

.cta-banner-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.cta-banner h2 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--kojin-red), var(--kojin-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -1px;
}

.cta-banner p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
    font-size: 1.0625rem;
    font-weight: 600;
}

.cta-feature .check {
    color: var(--success-green);
}

.cta-banner-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.5rem 3rem;
    background: linear-gradient(135deg, var(--kojin-red), var(--kojin-gold));
    color: var(--darkest-navy);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 800;
    font-size: 1.25rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 20px 50px rgba(255, 71, 87, 0.4);
    margin-bottom: 1rem;
}

.cta-banner-button:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 25px 60px rgba(255, 71, 87, 0.6);
}

.cta-note {
    color: var(--text-muted);
    font-size: 0.9375rem;
}

/* Stats Section */
.stats {
    padding: 8rem 2rem;
    background: rgba(15, 20, 25, 0.3);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.stats-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    text-align: center;
}

.stats .stat-item {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.stats .stat-number {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    background: linear-gradient(135deg, var(--kojin-gold), var(--kojin-dark-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.stats .stat-label {
    color: var(--text-secondary);
    font-size: 1.125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Donate Section */
.donate-section {
    padding: 8rem 2rem;
    background: rgba(15, 20, 25, 0.3);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.donate-container {
    max-width: 800px;
    margin: 0 auto;
}

.donate-content {
    text-align: center;
    background: linear-gradient(135deg, rgba(30, 39, 46, 0.6), rgba(21, 26, 30, 0.4));
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 217, 61, 0.2);
    border-radius: 28px;
    padding: 4rem 3rem;
}

.donate-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    animation: pulse 2s ease-in-out infinite;
}

.donate-content h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--kojin-red), var(--kojin-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.donate-content p {
    color: var(--text-secondary);
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.donate-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem 3rem;
    background: linear-gradient(135deg, var(--kojin-red), var(--kojin-gold));
    color: var(--darkest-navy);
    border: none;
    border-radius: 50px;
    font-weight: 800;
    font-size: 1.125rem;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 15px 40px rgba(255, 71, 87, 0.4);
}

.donate-button:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 20px 50px rgba(255, 71, 87, 0.6);
}

/* Footer */
footer {
    background: rgba(10, 14, 18, 0.8);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 4rem 2rem 2rem;
    text-align: center;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
}

.footer-links a:hover {
    color: var(--kojin-gold);
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-muted);
    font-size: 0.9375rem;
}

/* Modal Styles */
.modal, .donate-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
}

.modal.show, .donate-modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content, .donate-modal-content {
    background: linear-gradient(135deg, var(--darker-navy), var(--dark-navy));
    border: 2px solid rgba(255, 217, 61, 0.3);
    border-radius: 28px;
    padding: 3rem;
    max-width: 600px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
}

.modal-header, .donate-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 217, 61, 0.2);
}

.modal-header h2, .donate-modal-header h2 {
    background: linear-gradient(135deg, var(--kojin-red), var(--kojin-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 2rem;
    font-weight: 900;
}

.donate-modal-header {
    flex-direction: column;
    text-align: center;
}

.donate-modal-header p {
    color: var(--text-secondary);
    margin-top: 0.5rem;
}

.close-btn, .close-donate-btn {
    background: none;
    border: none;
    color: var(--text-secondary);
    font-size: 2rem;
    cursor: pointer;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.close-btn:hover, .close-donate-btn:hover {
    background: rgba(255, 71, 87, 0.2);
    color: var(--kojin-red);
}

.close-donate-btn {
    position: absolute;
    top: 1rem;
    right: 1rem;
}

.modal-body {
    color: var(--text-secondary);
    line-height: 1.8;
}

.modal-body h3 {
    color: var(--kojin-gold);
    margin: 1.5rem 0 1rem 0;
    font-weight: 700;
}

/* Donate Form */
.donate-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.donate-form-group {
    display: flex;
    flex-direction: column;
}

.donate-form-group label {
    color: var(--text-primary);
    font-weight: 700;
    margin-bottom: 0.5rem;
    font-size: 0.9375rem;
}

.donate-form-group input,
.donate-form-group textarea {
    background: rgba(10, 14, 18, 0.6);
    border: 2px solid rgba(255, 217, 61, 0.2);
    border-radius: 12px;
    padding: 1rem 1.5rem;
    color: var(--text-primary);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.donate-form-group input:focus,
.donate-form-group textarea:focus {
    outline: none;
    border-color: var(--kojin-gold);
    box-shadow: 0 0 20px rgba(255, 217, 61, 0.3);
}

.donate-form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.amount-input-wrapper {
    position: relative;
}

.amount-input-wrapper::before {
    content: ';
    position: absolute;
    left: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--kojin-gold);
    font-weight: 700;
    font-size: 1.25rem;
}

.amount-input-wrapper input {
    padding-left: 2.5rem;
    font-size: 1.25rem;
    font-weight: 700;
}

.quick-amounts {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.75rem;
    margin-top: 0.75rem;
}

.quick-amount-btn {
    padding: 0.75rem;
    background: rgba(255, 217, 61, 0.1);
    border: 2px solid rgba(255, 217, 61, 0.3);
    border-radius: 10px;
    color: var(--kojin-gold);
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.quick-amount-btn:hover {
    background: rgba(255, 217, 61, 0.2);
    border-color: rgba(255, 217, 61, 0.5);
    transform: translateY(-2px);
}

.donate-form-actions {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.donate-submit-btn,
.donate-cancel-btn {
    flex: 1;
    padding: 1.25rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.0625rem;
    cursor: pointer;
    transition: all 0.4s ease;
    border: none;
}

.donate-submit-btn {
    background: linear-gradient(135deg, var(--kojin-red), var(--kojin-gold));
    color: var(--darkest-navy);
}

.donate-submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(255, 71, 87, 0.5);
}

.donate-submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.donate-cancel-btn {
    background: rgba(255, 71, 87, 0.1);
    color: var(--kojin-red);
    border: 2px solid rgba(255, 71, 87, 0.3);
}

.donate-cancel-btn:hover {
    background: var(--kojin-red);
    color: white;
}

.donate-error {
    background: rgba(255, 71, 87, 0.1);
    border: 1px solid rgba(255, 71, 87, 0.3);
    border-radius: 10px;
    padding: 1rem;
    color: var(--kojin-red);
    font-weight: 600;
    display: none;
}

/* Animations */
@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* Scroll Arrows */
.scroll-arrows {
    position: fixed;
    right: 2rem;
    top: 50%;
    transform: translateY(-50%);
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.scroll-arrow {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(30, 39, 46, 0.8);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 217, 61, 0.3);
    color: var(--kojin-gold);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    opacity: 0.7;
}

.scroll-arrow:hover {
    background: rgba(255, 217, 61, 0.2);
    border-color: rgba(255, 217, 61, 0.6);
    transform: scale(1.1);
    opacity: 1;
}

.scroll-arrow svg {
    width: 24px;
    height: 24px;
}

.scroll-arrow-up {
    opacity: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .bundle-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1.5rem;
    }
    
    .bundle-price {
        text-align: center;
    }
    
    .bundle-cta {
        justify-content: center;
    }
    
    .scroll-arrows {
        display: none;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .hero {
        padding: 8rem 1.5rem 4rem;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-stats {
        gap: 2rem;
    }
    
    .cta-container {
        flex-direction: column;
        gap: 1rem;
    }
    
    .features-grid,
    .bots-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .quick-amounts {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .donate-form-actions {
        flex-direction: column;
    }
}