@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;
    --success-green: #00b894;
    --discord-blurple: #5865f2;
}

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;
}

.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);
}

/* Page Header */
.page-header {
    min-height: 40vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 10rem 2rem 4rem;
    position: relative;
}

.page-header-content {
    max-width: 900px;
    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;
}

.badge-icon {
    font-size: 1rem;
}

.page-header h1 {
    font-size: clamp(3rem, 8vw, 5.5rem);
    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;
    letter-spacing: -2px;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 720px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Bundle Section */
.bundle-section {
    padding: 2rem 2rem 4rem;
}

.bots-container {
    max-width: 1200px;
    margin: 0 auto;
}

.bundle-card {
    background: linear-gradient(135deg, rgba(30, 39, 46, 0.8), rgba(21, 26, 30, 0.6));
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 217, 61, 0.4);
    border-radius: 28px;
    padding: 2.5rem;
    margin-bottom: 3rem;
    position: relative;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 15px 50px rgba(255, 217, 61, 0.2);
    overflow: hidden;
}

.bundle-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);
}

.bundle-card:hover::before {
    opacity: 1;
}

.bundle-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 217, 61, 0.6);
    box-shadow: 0 25px 60px rgba(255, 217, 61, 0.3);
}

.bundle-badge {
    position: absolute;
    top: -12px;
    right: 30px;
    background: linear-gradient(135deg, var(--kojin-red), var(--kojin-gold));
    color: var(--darkest-navy);
    padding: 0.625rem 1.25rem;
    border-radius: 50px;
    font-weight: 800;
    font-size: 0.8125rem;
    letter-spacing: 0.5px;
    box-shadow: 0 6px 20px rgba(255, 217, 61, 0.5);
}

.bundle-content {
    position: relative;
    z-index: 2;
}

.bundle-header {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 1.5rem;
}

.bundle-avatars {
    display: flex;
    gap: -15px;
}

.bundle-avatar {
    width: 70px;
    height: 70px;
    border-radius: 16px;
    border: 3px solid rgba(255, 217, 61, 0.4);
    object-fit: cover;
    margin-left: -15px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.bundle-avatar:first-child {
    margin-left: 0;
}

.bundle-card:hover .bundle-avatar {
    transform: scale(1.1) translateY(-5px);
    border-color: rgba(255, 217, 61, 0.6);
    z-index: 2;
}

.bundle-info h2 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    letter-spacing: -0.5px;
}

.bundle-subtitle {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 0.75rem;
    font-weight: 500;
}

.bundle-savings {
    display: inline-block;
    background: rgba(0, 184, 148, 0.2);
    color: var(--success-green);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.875rem;
    border: 1px solid rgba(0, 184, 148, 0.3);
}

.bundle-description {
    font-size: 1.0625rem;
    color: var(--text-secondary);
    line-height: 1.75;
    margin-bottom: 1.5rem;
}

.bundle-price {
    display: flex;
    align-items: baseline;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.bundle-price-amount {
    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;
    letter-spacing: -1px;
}

.bundle-price-period {
    color: var(--text-secondary);
    font-size: 1.125rem;
    font-weight: 600;
}

.bundle-original-price {
    color: var(--text-muted);
    font-size: 1.25rem;
    text-decoration: line-through;
    opacity: 0.7;
}

.bundle-actions {
    display: flex;
    gap: 1rem;
}

.bundle-btn {
    padding: 1rem 2rem;
    font-size: 1rem;
}

/* Bots Section */
.bots-section {
    padding: 4rem 2rem 6rem;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.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, 3.5rem);
    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;
    letter-spacing: -1px;
}

.section-header p {
    font-size: 1.125rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* Bot Cards Grid */
.bots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.bot-card {
    background: linear-gradient(135deg, rgba(30, 39, 46, 0.7), rgba(21, 26, 30, 0.5));
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 2rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.bot-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);
}

.bot-card:hover::before {
    opacity: 1;
}

.bot-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 71, 87, 0.3);
    box-shadow: 0 20px 50px rgba(255, 71, 87, 0.3);
}

.bot-card.featured {
    border-color: rgba(255, 217, 61, 0.4);
    box-shadow: 0 0 30px rgba(255, 217, 61, 0.2);
}

.featured-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: linear-gradient(135deg, var(--kojin-red), var(--kojin-gold));
    color: var(--darkest-navy);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-weight: 800;
    font-size: 0.75rem;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(255, 217, 61, 0.4);
    z-index: 10;
}

.bot-header {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
}

.bot-avatar {
    width: 70px;
    height: 70px;
    border-radius: 16px;
    overflow: hidden;
    border: 2px solid rgba(255, 217, 61, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
}

.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 8px 25px rgba(255, 217, 61, 0.4);
}

.bot-info h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    letter-spacing: -0.3px;
}

.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;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.bot-description {
    color: var(--text-secondary);
    margin-bottom: 1.25rem;
    font-size: 0.9375rem;
    line-height: 1.75;
    position: relative;
    z-index: 2;
}

.bot-price {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    margin-bottom: 1.25rem;
    position: relative;
    z-index: 2;
}

.price-amount {
    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;
    letter-spacing: -1px;
}

.price-period {
    color: var(--text-secondary);
    font-size: 1rem;
    font-weight: 600;
}

.bot-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
}

.feature-tag {
    padding: 0.4rem 0.875rem;
    background: rgba(255, 217, 61, 0.1);
    color: var(--kojin-gold);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    border: 1px solid rgba(255, 217, 61, 0.2);
    white-space: nowrap;
}

.infinity-symbol {
    color: var(--kojin-gold);
    font-weight: 700;
    font-size: 1rem;
    display: inline-block;
    margin-right: 0.25rem;
    filter: drop-shadow(0 0 4px rgba(255, 217, 61, 0.5));
}

.bot-actions {
    display: flex;
    gap: 0.75rem;
    position: relative;
    z-index: 2;
}

.btn-primary,
.btn-secondary {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9375rem;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-primary {
    background: linear-gradient(135deg, var(--kojin-red), var(--kojin-gold));
    color: var(--darkest-navy);
    box-shadow: 0 4px 15px rgba(255, 71, 87, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(255, 71, 87, 0.5);
}

.btn-secondary {
    background: rgba(255, 217, 61, 0.1);
    color: var(--kojin-gold);
    border: 2px solid rgba(255, 217, 61, 0.3);
}

.btn-secondary:hover {
    background: rgba(255, 217, 61, 0.2);
    border-color: rgba(255, 217, 61, 0.5);
    transform: translateY(-3px);
}

/* Bot Modal */
.bot-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(15px);
}

.bot-modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.bot-modal-content {
    background: linear-gradient(145deg, var(--darker-navy), var(--dark-navy));
    border: 2px solid rgba(255, 217, 61, 0.3);
    border-radius: 28px;
    padding: 3rem;
    max-width: 900px;
    width: 90%;
    max-height: 85vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
    animation: slideUp 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.bot-modal-content::-webkit-scrollbar {
    width: 8px;
}

.bot-modal-content::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
}

.bot-modal-content::-webkit-scrollbar-thumb {
    background: rgba(255, 217, 61, 0.3);
    border-radius: 4px;
}

.bot-modal-content::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 217, 61, 0.5);
}

.close-btn {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: rgba(255, 71, 87, 0.1);
    border: none;
    color: var(--text-secondary);
    font-size: 2rem;
    cursor: pointer;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.close-btn:hover {
    background: rgba(255, 71, 87, 0.2);
    color: var(--kojin-red);
    transform: rotate(90deg);
}

/* Bot Modal Content Styles */
.modal-bot-header {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid rgba(255, 217, 61, 0.2);
}

.modal-bot-avatar {
    width: 120px;
    height: 120px;
    border-radius: 24px;
    overflow: hidden;
    border: 3px solid rgba(255, 217, 61, 0.4);
    box-shadow: 0 10px 40px rgba(255, 217, 61, 0.3);
    flex-shrink: 0;
}

.modal-bot-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.modal-bundle-avatars {
    display: flex;
    gap: 0.5rem;
    width: 120px;
    height: 120px;
    flex-shrink: 0;
}

.modal-bundle-avatar {
    flex: 1;
    border-radius: 16px;
    overflow: hidden;
    border: 2px solid rgba(255, 217, 61, 0.4);
    box-shadow: 0 8px 24px rgba(255, 217, 61, 0.2);
}

.modal-bundle-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.modal-bot-info {
    flex: 1;
}

.modal-bot-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    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.8125rem;
    font-weight: 700;
    color: var(--kojin-gold);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.modal-bot-info h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    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;
    margin-bottom: 0.75rem;
    line-height: 1.2;
}

.modal-bot-desc {
    color: var(--text-secondary);
    font-size: 1.125rem;
    line-height: 1.75;
    margin-bottom: 1.5rem;
}

.modal-bot-price {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
}

.modal-price-amount {
    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;
    letter-spacing: -1px;
}

.modal-price-period {
    color: var(--text-secondary);
    font-size: 1.125rem;
    font-weight: 600;
}

.modal-features-section {
    margin-bottom: 2.5rem;
}

.modal-features-header {
    text-align: center;
    margin-bottom: 2rem;
}

.modal-features-header h3 {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, var(--kojin-red), var(--kojin-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.modal-features-header p {
    color: var(--text-secondary);
    font-size: 1rem;
}

.modal-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.modal-feature-item {
    background: linear-gradient(135deg, rgba(30, 39, 46, 0.6), rgba(21, 26, 30, 0.4));
    backdrop-filter: blur(20px);
    border: 1.5px solid rgba(255, 217, 61, 0.2);
    border-radius: 16px;
    padding: 1.5rem;
    display: flex;
    gap: 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.modal-feature-item::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.3s ease;
}

.modal-feature-item:hover::before {
    opacity: 1;
}

.modal-feature-item:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 217, 61, 0.4);
    box-shadow: 0 12px 32px rgba(255, 217, 61, 0.2);
}

.modal-feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(255, 71, 87, 0.2), rgba(255, 217, 61, 0.15));
    border: 1.5px solid rgba(255, 217, 61, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
}

.modal-feature-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--kojin-gold);
    stroke-width: 3;
}

.modal-feature-content {
    flex: 1;
    position: relative;
    z-index: 2;
}

.modal-feature-content h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.modal-feature-content h4 .infinity-symbol {
    color: var(--kojin-gold);
    font-weight: 800;
    font-size: 1.25rem;
    margin-right: 0.25rem;
}

.modal-feature-content p {
    color: var(--text-secondary);
    font-size: 0.9375rem;
    line-height: 1.6;
    margin: 0;
}

.modal-trust-badges {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    padding: 1.5rem;
    background: rgba(10, 14, 18, 0.4);
    border-radius: 16px;
    border: 1px solid rgba(255, 217, 61, 0.15);
    flex-wrap: wrap;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
    font-size: 0.875rem;
    font-weight: 600;
}

.trust-badge span:first-child {
    font-size: 1.125rem;
}

.modal-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.modal-purchase-btn {
    min-width: 200px;
    font-size: 1.125rem;
    padding: 1.125rem 2.5rem;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

@media (max-width: 768px) {
    .modal-bot-header {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .modal-features-grid {
        grid-template-columns: 1fr;
    }
    
    .modal-trust-badges {
        flex-direction: column;
        gap: 1rem;
    }
    
    .modal-actions {
        flex-direction: column;
    }
}

/* Purchase Modal */
.purchase-modal {
    display: none;
    position: fixed;
    z-index: 3000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(15px);
}

.purchase-modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

.purchase-modal-content {
    background: linear-gradient(145deg, var(--darker-navy), var(--dark-navy));
    border: 2px solid rgba(255, 217, 61, 0.3);
    border-radius: 28px;
    padding: 3rem;
    max-width: 650px;
    width: 90%;
    position: relative;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.8);
    animation: slideUp 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.purchase-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 217, 61, 0.2);
}

.purchase-header h2 {
    font-size: 2rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--kojin-red), var(--kojin-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.75rem;
}

.purchase-header p {
    color: var(--text-secondary);
    font-size: 1rem;
}

.bot-info-section {
    background: rgba(10, 14, 18, 0.6);
    border: 1px solid rgba(255, 217, 61, 0.2);
    border-radius: 16px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.bot-mini-avatar {
    width: 70px;
    height: 70px;
    border-radius: 16px;
    overflow: hidden;
    border: 2px solid rgba(255, 217, 61, 0.4);
    flex-shrink: 0;
}

.bot-mini-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bot-purchase-info h3 {
    color: var(--text-primary);
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.bot-purchase-price {
    color: var(--kojin-gold);
    font-size: 1.25rem;
    font-weight: 700;
}

/* Form Styles */
.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    color: var(--text-primary);
    font-weight: 600;
    margin-bottom: 0.75rem;
    font-size: 1rem;
}

.form-input {
    width: 100%;
    padding: 1rem 1.5rem;
    background: rgba(10, 14, 18, 0.6);
    border: 2px solid rgba(255, 217, 61, 0.2);
    border-radius: 12px;
    color: var(--text-primary);
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.form-input:focus {
    outline: none;
    border-color: var(--kojin-gold);
    box-shadow: 0 0 20px rgba(255, 217, 61, 0.3);
}

.form-input.valid {
    border-color: var(--success-green);
    background: rgba(0, 184, 148, 0.05);
}

.form-input.invalid {
    border-color: var(--kojin-red);
    background: rgba(255, 71, 87, 0.05);
}

/* Discord OAuth */
.discord-oauth-section {
    margin-bottom: 1.5rem;
}

.discord-oauth-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    background: var(--discord-blurple);
    color: white;
    border: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(88, 101, 242, 0.3);
}

.discord-oauth-btn:hover {
    background: #4752C4;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(88, 101, 242, 0.5);
}

.discord-oauth-btn svg {
    width: 20px;
    height: 20px;
}

.oauth-divider {
    display: flex;
    align-items: center;
    text-align: center;
    margin: 1.5rem 0;
    color: var(--text-secondary);
    font-size: 0.875rem;
}

.oauth-divider::before,
.oauth-divider::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.oauth-divider span {
    padding: 0 1rem;
}

.validation-message {
    margin-top: 0.75rem;
    font-size: 0.875rem;
    font-weight: 600;
}

.validation-message.valid {
    color: var(--success-green);
}

.validation-message.invalid {
    color: var(--kojin-red);
}

.help-text {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin-top: 0.5rem;
}

.help-steps {
    background: rgba(88, 101, 242, 0.1);
    border: 1px solid rgba(88, 101, 242, 0.3);
    border-radius: 12px;
    padding: 1.5rem;
    margin-top: 1rem;
}

.help-steps h4 {
    color: var(--discord-blurple);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.step-list {
    list-style: none;
    padding: 0;
}

.step-list li {
    color: var(--text-secondary);
    margin-bottom: 0.75rem;
    padding-left: 2rem;
    position: relative;
    font-size: 0.9375rem;
}

.step-list li::before {
    content: attr(data-step);
    position: absolute;
    left: 0;
    top: 0;
    background: var(--discord-blurple);
    color: white;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
}

.purchase-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.purchase-btn {
    flex: 2;
}

.error-message {
    background: rgba(255, 71, 87, 0.1);
    border: 1px solid rgba(255, 71, 87, 0.3);
    border-radius: 12px;
    padding: 1rem;
    color: var(--kojin-red);
    margin-top: 1rem;
    display: none;
    font-weight: 600;
}

.loading-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 14, 18, 0.95);
    border-radius: 28px;
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 1.5rem;
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid rgba(255, 217, 61, 0.2);
    border-top: 4px solid var(--kojin-gold);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.loading-text {
    color: var(--kojin-gold);
    font-weight: 700;
    font-size: 1.125rem;
}

/* 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;
}

/* 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) {
    .scroll-arrows {
        display: none;
    }
}

@media (max-width: 768px) {
    .bundle-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .bundle-avatars {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .page-header {
        padding: 8rem 1.5rem 3rem;
    }
    
    .bundle-card {
        padding: 2rem;
    }
    
    .bundle-actions {
        flex-direction: column;
    }
    
    .bots-grid {
        grid-template-columns: 1fr;
    }
    
    .bot-actions {
        flex-direction: column;
    }
    
    .bot-modal-content,
    .purchase-modal-content {
        padding: 2rem;
        width: 95%;
    }
    
    .purchase-actions {
        flex-direction: column;
    }
    
    .bot-info-section {
        flex-direction: column;
        text-align: center;
    }
}

/* Smooth transitions */
* {
    transition: border-color 0.3s ease, background-color 0.3s ease;
}