/* ===== DISCORD BOTS PAGE - CREATIVE STYLES ===== */

/* Extra Background Orb */
.bg-gradient-orb-3 {
    position: fixed;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(57, 236, 254, 0.08) 0%, transparent 70%);
    top: 60%;
    left: 50%;
    transform: translateX(-50%);
    filter: blur(60px);
    pointer-events: none;
    z-index: 0;
}

/* Floating Particles */
.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--accent-primary);
    border-radius: 50%;
    opacity: 0.3;
    animation: float-up 15s infinite linear;
}

.particle:nth-child(1) {
    left: 10%;
    animation-delay: 0s;
    animation-duration: 12s;
}

.particle:nth-child(2) {
    left: 30%;
    animation-delay: 2s;
    animation-duration: 18s;
}

.particle:nth-child(3) {
    left: 50%;
    animation-delay: 4s;
    animation-duration: 14s;
}

.particle:nth-child(4) {
    left: 70%;
    animation-delay: 1s;
    animation-duration: 16s;
}

.particle:nth-child(5) {
    left: 90%;
    animation-delay: 3s;
    animation-duration: 20s;
}

@keyframes float-up {
    0% {
        transform: translateY(100vh) scale(0);
        opacity: 0;
    }

    10% {
        opacity: 0.4;
    }

    90% {
        opacity: 0.4;
    }

    100% {
        transform: translateY(-100px) scale(1);
        opacity: 0;
    }
}

/* Hero Section */
.discord-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 120px 60px 80px;
    gap: 60px;
    position: relative;
    max-width: 1600px;
    margin: 0 auto;
}

.hero-glow {
    position: absolute;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(57, 236, 254, 0.15) 0%, transparent 60%);
    top: 50%;
    left: 30%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    animation: pulse-glow 4s ease-in-out infinite;
}

@keyframes pulse-glow {

    0%,
    100% {
        opacity: 0.5;
        transform: translate(-50%, -50%) scale(1);
    }

    50% {
        opacity: 0.8;
        transform: translate(-50%, -50%) scale(1.1);
    }
}

.hero-content {
    flex: 1;
    max-width: 650px;
    z-index: 1;
}

/* Hero Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(57, 236, 254, 0.1);
    border: 1px solid rgba(57, 236, 254, 0.3);
    border-radius: var(--radius-full);
    font-size: 14px;
    font-weight: 600;
    color: var(--accent-primary);
    margin-bottom: 32px;
}

.hero-badge.pulse {
    animation: badge-pulse 2s ease-in-out infinite;
}

@keyframes badge-pulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(57, 236, 254, 0.4);
    }

    50% {
        box-shadow: 0 0 0 10px rgba(57, 236, 254, 0);
    }
}

.badge-icon {
    font-size: 20px;
}

/* Hero Title */
.discord-hero .hero-title {
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -0.03em;
}

.typing-effect {
    position: relative;
}

.typing-effect::after {
    content: '|';
    animation: blink 1s infinite;
    color: var(--accent-primary);
}

@keyframes blink {

    0%,
    50% {
        opacity: 1;
    }

    51%,
    100% {
        opacity: 0;
    }
}

.discord-hero .hero-subtitle {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 32px;
}

.discord-hero .hero-subtitle strong {
    color: var(--accent-primary);
}

/* Hero Features */
.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 40px;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: var(--bg-secondary);
    border-radius: var(--radius-full);
    font-size: 14px;
    color: var(--text-secondary);
}

.feature-check {
    color: var(--accent-primary);
    font-weight: 600;
}

/* Hero CTA */
.discord-hero .hero-cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-glow {
    position: relative;
    overflow: hidden;
}

.btn-glow::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% {
        left: -100%;
    }

    50%,
    100% {
        left: 100%;
    }
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--border-color);
}

.btn-outline:hover {
    border-color: var(--accent-primary);
    background: rgba(57, 236, 254, 0.1);
}

/* Hero Visual - Bot Showcase */
.hero-visual {
    flex: 1;
    max-width: 500px;
    z-index: 1;
}

.bot-showcase {
    position: relative;
    perspective: 1000px;
}

.bot-window {
    background: #36393f;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    animation: float 6s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0) rotateX(0);
    }

    50% {
        transform: translateY(-10px) rotateX(2deg);
    }
}

.bot-header {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 16px 20px;
    background: #2f3136;
    font-weight: 600;
    font-size: 16px;
}

.bot-status {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #43b581;
    animation: status-pulse 2s infinite;
}

@keyframes status-pulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(67, 181, 129, 0.4);
    }

    50% {
        box-shadow: 0 0 0 6px rgba(67, 181, 129, 0);
    }
}

.bot-tag {
    color: #72767d;
    font-weight: 400;
}

.bot-messages {
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.bot-message {
    display: flex;
    gap: 12px;
}

.msg-avatar {
    width: 40px;
    height: 40px;
    background: #5865f2;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    overflow: hidden;
    flex-shrink: 0;
}

.msg-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.badge-logo {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.msg-content {
    flex: 1;
}

.msg-name {
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 4px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.msg-badge {
    background: #5865f2;
    color: white;
    font-size: 10px;
    padding: 2px 6px;
    border-radius: 3px;
    font-weight: 500;
}

.msg-text {
    color: #dcddde;
    font-size: 14px;
}

.msg-embed {
    display: flex;
    margin-top: 8px;
    background: #2f3136;
    border-radius: 4px;
    overflow: hidden;
}

.embed-bar {
    width: 4px;
    background: var(--accent-primary);
}

.embed-content {
    padding: 12px;
}

.embed-title {
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 4px;
    color: var(--accent-primary);
}

.embed-desc {
    font-size: 13px;
    color: #dcddde;
}

/* Section Styling */
.section-tag {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(57, 236, 254, 0.1);
    border: 1px solid rgba(57, 236, 254, 0.2);
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 600;
    color: var(--accent-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

/* Included Section */
.included-section {
    position: relative;
    z-index: 1;
    padding: 100px 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.included-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.included-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    padding: 32px;
    text-align: center;
    transition: var(--transition-normal);
}

.included-card:hover {
    border-color: var(--accent-primary);
    transform: translateY(-4px);
    box-shadow: 0 0 40px rgba(57, 236, 254, 0.1);
}

.included-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.included-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
}

.included-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Features Bento Grid */
.features-showcase {
    position: relative;
    z-index: 1;
    padding: 100px 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.features-bento {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.bento-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    padding: 28px;
    transition: var(--transition-normal);
}

.bento-card:hover {
    border-color: rgba(57, 236, 254, 0.3);
    background: linear-gradient(135deg, var(--bg-card) 0%, rgba(57, 236, 254, 0.03) 100%);
}

.bento-card.bento-large {
    grid-column: span 2;
}

.bento-card.bento-wide {
    grid-column: span 2;
}

.bento-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 16px;
    color: var(--accent-primary);
}

.bento-icon svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 0 6px rgba(57, 236, 254, 0.3));
}

.bento-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
}

.bento-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.bento-visual {
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.mod-action {
    padding: 8px 12px;
    background: var(--bg-secondary);
    border-radius: var(--radius-sm);
    font-size: 12px;
    color: var(--text-secondary);
}

/* Examples Showcase Section */
.examples-section {
    position: relative;
    z-index: 1;
    padding: 100px 24px;
    max-width: 1400px;
    margin: 0 auto;
}

.section-subtitle {
    font-size: 16px;
    color: var(--text-secondary);
    margin-top: 8px;
}

/* ===== EXAMPLES SLIDER ===== */
.examples-slider {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 60px;
}

.slider-viewport {
    overflow: hidden;
    border-radius: 20px;
}

.slider-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    will-change: transform;
}

.slide {
    min-width: 100%;
    padding: 0 10px;
    box-sizing: border-box;
}

.example-card {
    position: relative;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    max-width: 100%;
}

.example-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    padding: 1px;
    background: linear-gradient(135deg, rgba(57, 236, 254, 0.4) 0%, transparent 50%, rgba(57, 236, 254, 0.15) 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    pointer-events: none;
}

.example-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(57, 236, 254, 0.1) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.example-card:hover::after {
    opacity: 1;
}

.example-image {
    position: relative;
    overflow: hidden;
}

.example-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.example-card:hover .example-image img {
    transform: scale(1.05);
}

.example-info {
    position: relative;
    padding: 24px;
    background: linear-gradient(180deg, rgba(11, 15, 20, 0.5) 0%, rgba(11, 15, 20, 0.85) 100%);
    backdrop-filter: blur(10px);
}

.example-info h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.example-info p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* Welcome placeholder */
.welcome-placeholder {
    background: linear-gradient(135deg, rgba(57, 236, 254, 0.08) 0%, rgba(88, 101, 242, 0.08) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 280px;
}

.welcome-preview {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    animation: welcomePulse 3s ease-in-out infinite;
}

.welcome-emoji {
    font-size: 64px;
}

.welcome-text {
    font-size: 24px;
    font-weight: 700;
    color: var(--accent-primary);
    letter-spacing: 2px;
}

@keyframes welcomePulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.8;
    }

    50% {
        transform: scale(1.05);
        opacity: 1;
    }
}

/* Slider arrows */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(57, 236, 254, 0.1);
    border: 1px solid rgba(57, 236, 254, 0.3);
    color: var(--accent-primary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.slider-arrow:hover {
    background: rgba(57, 236, 254, 0.25);
    border-color: var(--accent-primary);
    box-shadow: 0 0 20px rgba(57, 236, 254, 0.3);
    transform: translateY(-50%) scale(1.1);
}

.slider-arrow svg {
    width: 24px;
    height: 24px;
}

.slider-prev {
    left: 0;
}

.slider-next {
    right: 0;
}

/* Slider dots */
.slider-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 28px;
}

.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    padding: 0;
}

.slider-dot:hover {
    background: rgba(57, 236, 254, 0.3);
}

.slider-dot.active {
    background: var(--accent-primary);
    border-color: var(--accent-primary);
    width: 28px;
    border-radius: 5px;
    box-shadow: 0 0 12px rgba(57, 236, 254, 0.5);
}

/* Responsive */
@media (max-width: 768px) {
    .examples-slider {
        padding: 0 16px;
    }

    .slider-arrow {
        width: 36px;
        height: 36px;
    }

    .slider-arrow svg {
        width: 18px;
        height: 18px;
    }

    .slider-prev {
        left: -4px;
    }

    .slider-next {
        right: -4px;
    }
}

/* ===== BOT DEMO ===== */
.demo-section {
    position: relative;
    z-index: 1;
    padding: 100px 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.demo-window {
    display: flex;
    max-width: 800px;
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 40px rgba(57, 236, 254, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.06);
    height: 480px;
}

.demo-sidebar {
    width: 72px;
    min-width: 72px;
    background: #202225;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 12px 0;
    gap: 8px;
}

.demo-server-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #36393f;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
}

.demo-server-icon:hover,
.demo-server-icon.active {
    border-radius: 16px;
    background: var(--accent-primary);
    color: #000;
}

.demo-main {
    flex: 1;
    background: #36393f;
    display: flex;
    flex-direction: column;
}

.demo-channel-header {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.3);
    background: #36393f;
    color: #fff;
    font-weight: 600;
    font-size: 15px;
}

.demo-channel-header svg {
    color: #72767d;
}

.demo-channel-topic {
    margin-left: auto;
    font-size: 12px;
    font-weight: 400;
    color: #72767d;
}

.demo-messages {
    flex: 1;
    overflow-y: auto;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    scrollbar-width: thin;
    scrollbar-color: #202225 transparent;
}

.demo-message {
    display: flex;
    gap: 16px;
    animation: msgSlideIn 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

@keyframes msgSlideIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.demo-message.user-message {
    justify-content: flex-start;
}

.demo-avatar {
    position: relative;
    width: 40px;
    height: 40px;
    min-width: 40px;
}

.bot-avatar-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #39ecfe, #5865f2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.user-avatar-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #57f287, #3ba55d);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.demo-avatar .status-dot {
    position: absolute;
    bottom: -2px;
    right: -2px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 3px solid #36393f;
}

.demo-avatar .status-dot.online {
    background: #3ba55d;
}

.demo-msg-content {
    flex: 1;
    min-width: 0;
}

.demo-msg-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 4px;
}

.demo-username {
    font-weight: 600;
    color: #fff;
    font-size: 15px;
}

.demo-username.user-name {
    color: #57f287;
}

.demo-bot-badge {
    background: #5865f2;
    color: #fff;
    font-size: 10px;
    font-weight: 600;
    padding: 1px 5px;
    border-radius: 3px;
    letter-spacing: 0.5px;
}

.demo-timestamp {
    font-size: 12px;
    color: #72767d;
}

.demo-msg-text {
    color: #dcddde;
    font-size: 15px;
    line-height: 1.4;
}

.demo-msg-text code {
    background: #2f3136;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 14px;
    color: #e3e5e8;
}

/* Embeds */
.demo-embed {
    background: #2f3136;
    border-radius: 4px;
    border-left: 4px solid #39ecfe;
    margin-top: 4px;
    max-width: 520px;
    overflow: hidden;
}

.demo-embed-content {
    padding: 12px 16px;
}

.demo-embed-title {
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 6px;
}

.demo-embed-desc {
    font-size: 14px;
    color: #dcddde;
    line-height: 1.5;
}

.demo-embed-desc code {
    background: rgba(0, 0, 0, 0.3);
    padding: 1px 5px;
    border-radius: 3px;
    font-size: 13px;
    color: var(--accent-primary);
}

.demo-embed-fields {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 8px;
    margin-top: 10px;
}

.demo-embed-field {
    font-size: 13px;
}

.demo-embed-field .field-name {
    font-weight: 700;
    color: #b9bbbe;
    margin-bottom: 2px;
    font-size: 12px;
    text-transform: uppercase;
}

.demo-embed-field .field-value {
    color: #dcddde;
}

.demo-embed-footer {
    padding: 8px 16px;
    border-top: 1px solid rgba(0, 0, 0, 0.2);
    font-size: 12px;
    color: #72767d;
}

/* Progress bar in embeds */
.demo-progress-bar {
    background: #202225;
    border-radius: 4px;
    height: 8px;
    margin-top: 8px;
    overflow: hidden;
}

.demo-progress-fill {
    height: 100%;
    border-radius: 4px;
    background: linear-gradient(90deg, var(--accent-primary), #5865f2);
    transition: width 1s ease;
}

/* Typing indicator */
.demo-typing {
    display: none;
    align-items: center;
    gap: 8px;
    padding: 4px 16px 8px;
    font-size: 13px;
    color: #72767d;
}

.demo-typing.visible {
    display: flex;
}

.typing-dots {
    display: flex;
    gap: 3px;
}

.typing-dots span {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #72767d;
    animation: typingBounce 1.4s infinite ease-in-out;
}

.typing-dots span:nth-child(2) {
    animation-delay: 0.2s;
}

.typing-dots span:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes typingBounce {

    0%,
    80%,
    100% {
        transform: translateY(0);
        opacity: 0.4;
    }

    40% {
        transform: translateY(-6px);
        opacity: 1;
    }
}

/* Input area */
.demo-input-area {
    position: relative;
    padding: 0 16px 16px;
}

.demo-input-wrapper {
    display: flex;
    align-items: center;
    background: #40444b;
    border-radius: 8px;
    padding: 4px 4px 4px 16px;
}

.demo-input {
    flex: 1;
    background: none;
    border: none;
    outline: none;
    color: #dcddde;
    font-size: 15px;
    font-family: inherit;
    padding: 8px 0;
}

.demo-input::placeholder {
    color: #72767d;
}

.demo-send-btn {
    width: 36px;
    height: 36px;
    border-radius: 6px;
    background: var(--accent-primary);
    border: none;
    color: #000;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.demo-send-btn:hover {
    background: #fff;
    transform: scale(1.05);
}

/* Autocomplete */
.demo-autocomplete {
    position: absolute;
    bottom: 100%;
    left: 16px;
    right: 16px;
    background: #2f3136;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
    overflow: hidden;
    display: none;
    margin-bottom: 4px;
    z-index: 10;
}

.demo-autocomplete.visible {
    display: block;
    animation: acSlideUp 0.2s ease;
}

@keyframes acSlideUp {
    from {
        opacity: 0;
        transform: translateY(8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.autocomplete-header {
    padding: 8px 12px;
    font-size: 12px;
    font-weight: 700;
    color: #b9bbbe;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.autocomplete-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 12px;
    cursor: pointer;
    transition: background 0.15s ease;
}

.autocomplete-item:hover {
    background: rgba(57, 236, 254, 0.1);
}

.autocomplete-cmd {
    font-weight: 600;
    color: #fff;
    font-size: 14px;
}

.autocomplete-desc {
    font-size: 13px;
    color: #72767d;
}

/* Responsive */
@media (max-width: 600px) {
    .demo-window {
        height: 420px;
    }

    .demo-sidebar {
        width: 56px;
        min-width: 56px;
    }

    .demo-server-icon {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }

    .demo-channel-topic {
        display: none;
    }

    .demo-embed-fields {
        grid-template-columns: 1fr;
    }
}

/* Bento Card with Image */
.bento-card.bento-with-image {
    display: flex;
    gap: 20px;
    align-items: center;
}

.bento-text {
    flex: 1;
}

.bento-text .bento-icon {
    margin-bottom: 12px;
}

.bento-image {
    flex-shrink: 0;
    max-width: 200px;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.bento-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Pricing Section */
.pricing-section {
    position: relative;
    z-index: 1;
    padding: 100px 24px;
    max-width: 1400px;
    margin: 0 auto;
}

.pricing-explanation {
    font-size: 18px;
    color: var(--text-secondary);
    margin-top: 16px;
}

.pricing-explanation strong {
    color: var(--accent-primary);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 60px;
}

.pricing-card {
    position: relative;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    padding: 32px;
    display: flex;
    flex-direction: column;
    transition: var(--transition-normal);
    overflow: hidden;
}

.card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(57, 236, 254, 0.03) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.pricing-card:hover .card-glow {
    opacity: 1;
}

.pricing-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-4px);
}

/* Featured Card */
.pricing-card.featured {
    border-color: var(--accent-primary);
    background: linear-gradient(180deg, rgba(57, 236, 254, 0.08) 0%, var(--bg-card) 50%);
}

.featured-badge,
.ultimate-badge {
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    padding: 8px 20px;
    background: var(--accent-gradient);
    border-radius: 0 0 var(--radius-md) var(--radius-md);
    font-size: 12px;
    font-weight: 700;
    color: #0B0F14;
}

.featured-glow {
    background: radial-gradient(circle, rgba(57, 236, 254, 0.08) 0%, transparent 50%);
    opacity: 1;
}

/* Ultimate Card */
.pricing-card.ultimate {
    border-color: #ffd700;
    background: linear-gradient(180deg, rgba(255, 215, 0, 0.08) 0%, var(--bg-card) 50%);
}

.ultimate-badge {
    background: linear-gradient(135deg, #ffd700 0%, #ffaa00 100%);
}

.ultimate-glow {
    background: radial-gradient(circle, rgba(255, 215, 0, 0.05) 0%, transparent 50%);
    opacity: 1;
}

/* Custom Card */
.pricing-card.custom {
    border-style: dashed;
}

.custom-glow {
    background: radial-gradient(circle, rgba(139, 92, 246, 0.05) 0%, transparent 50%);
}

.pricing-header {
    text-align: center;
    margin-bottom: 24px;
}

.pricing-icon {
    width: 44px;
    height: 44px;
    margin-bottom: 12px;
    color: var(--accent-primary);
}

.pricing-icon svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 0 8px rgba(57, 236, 254, 0.3));
}

.pricing-header h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 4px;
}

.pricing-desc {
    font-size: 14px;
    color: var(--text-muted);
}

.price-block {
    text-align: center;
    padding: 24px 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 24px;
}

.price-main {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
    margin-bottom: 8px;
}

.price-main .currency {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-secondary);
}

.price-main .amount {
    font-size: 56px;
    font-weight: 800;
    color: var(--accent-primary);
    line-height: 1;
}

.price-main .price-type {
    font-size: 14px;
    color: var(--text-muted);
    margin-left: 4px;
}

.price-sub {
    font-size: 14px;
    color: var(--accent-primary);
    font-weight: 500;
}

.custom-price {
    flex-direction: column;
    gap: 0;
}

.custom-text {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
}

.pricing-features {
    list-style: none;
    margin-bottom: 32px;
    flex: 1;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    font-size: 14px;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border-color);
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features .check {
    color: var(--accent-primary);
    font-weight: 600;
}

.pricing-features strong {
    color: var(--text-primary);
}

.pricing-card .btn {
    width: 100%;
    justify-content: center;
}

/* CTA Section */
.cta-section {
    position: relative;
    z-index: 1;
    padding: 120px 24px;
    text-align: center;
}

.cta-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(57, 236, 254, 0.1) 0%, transparent 60%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 600px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 16px;
}

.cta-content p {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 32px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* Responsive */
@media (max-width: 1200px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .included-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 968px) {
    .discord-hero {
        flex-direction: column;
        padding: 120px 24px 60px;
        text-align: center;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-features {
        justify-content: center;
    }

    .discord-hero .hero-cta {
        justify-content: center;
    }

    .hero-visual {
        max-width: 100%;
    }

    .features-bento {
        grid-template-columns: 1fr;
    }

    .bento-card.bento-large,
    .bento-card.bento-wide {
        grid-column: span 1;
    }
}

@media (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .included-grid {
        grid-template-columns: 1fr;
    }
}

/* Lightbox */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    animation: lightbox-zoom 0.3s ease;
}

@keyframes lightbox-zoom {
    from {
        transform: scale(0.8);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

.lightbox-content img {
    max-width: 100%;
    max-height: 85vh;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5),
        0 0 100px rgba(57, 236, 254, 0.1);
}

.lightbox-close {
    position: absolute;
    top: -50px;
    right: 0;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: white;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-close:hover {
    background: rgba(57, 236, 254, 0.2);
    border-color: var(--accent-primary);
    transform: rotate(90deg);
}

/* ===== TIMELINE SECTION ===== */
.timeline-section {
    position: relative;
    z-index: 1;
    padding: 100px 24px;
    max-width: 1000px;
    margin: 0 auto;
}

.timeline {
    position: relative;
    padding-left: 40px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--accent-primary) 0%, rgba(57, 236, 254, 0.2) 100%);
}

.timeline-item {
    position: relative;
    padding-bottom: 40px;
    opacity: 0;
    transform: translateX(-20px);
    animation: fadeInLeft 0.5s ease forwards;
}

.timeline-item:nth-child(1) {
    animation-delay: 0.1s;
}

.timeline-item:nth-child(2) {
    animation-delay: 0.2s;
}

.timeline-item:nth-child(3) {
    animation-delay: 0.3s;
}

.timeline-item:nth-child(4) {
    animation-delay: 0.4s;
}

.timeline-item:nth-child(5) {
    animation-delay: 0.5s;
}

.timeline-item:nth-child(6) {
    animation-delay: 0.6s;
}

@keyframes fadeInLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.timeline-icon {
    position: absolute;
    left: -40px;
    width: 32px;
    height: 32px;
    background: var(--bg-card);
    border: 2px solid var(--accent-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    color: var(--accent-primary);
    padding: 5px;
}

.timeline-icon svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 0 4px rgba(57, 236, 254, 0.3));
}

.timeline-content {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 20px 24px;
    transition: var(--transition-normal);
}

.timeline-content:hover {
    border-color: var(--accent-primary);
    box-shadow: 0 0 30px rgba(57, 236, 254, 0.1);
}

.timeline-content h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--accent-primary);
}

.timeline-content p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ===== CONFIGURATOR SECTION ===== */
.configurator-section {
    position: relative;
    z-index: 1;
    padding: 100px 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.configurator {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 40px;
}

.config-features {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
}

.config-category {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    padding: 24px;
}

.config-category h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--accent-primary);
    display: flex;
    align-items: center;
    gap: 8px;
}

.cat-icon {
    display: inline-flex;
    width: 20px;
    height: 20px;
    color: var(--accent-primary);
    flex-shrink: 0;
}

.cat-icon svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 0 4px rgba(57, 236, 254, 0.3));
}

.config-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    margin-bottom: 8px;
    background: var(--bg-secondary);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition-normal);
}

.config-option:hover {
    background: rgba(57, 236, 254, 0.05);
}

.config-option input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid var(--border-color);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-normal);
    flex-shrink: 0;
}

.config-option input:checked+.checkmark {
    background: var(--accent-primary);
    border-color: var(--accent-primary);
}

.config-option input:checked+.checkmark::after {
    content: '✓';
    color: #0B0F14;
    font-size: 12px;
    font-weight: 700;
}

.config-option input:disabled+.checkmark {
    background: rgba(57, 236, 254, 0.3);
    border-color: rgba(57, 236, 254, 0.5);
}

.option-text {
    flex: 1;
    font-size: 14px;
    color: var(--text-primary);
}

.option-badge {
    font-size: 11px;
    color: var(--accent-primary);
    font-weight: 600;
    background: rgba(57, 236, 254, 0.1);
    padding: 2px 10px;
    border-radius: var(--radius-full);
    border: 1px solid rgba(57, 236, 254, 0.2);
}

.config-option.included {
    opacity: 0.85;
}

.config-summary {
    position: sticky;
    top: 100px;
}

.summary-card {
    background: var(--bg-card);
    border: 1px solid var(--accent-primary);
    border-radius: var(--radius-xl);
    padding: 28px;
    box-shadow: 0 0 40px rgba(57, 236, 254, 0.1);
}

.summary-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
}

.summary-list {
    max-height: 200px;
    overflow-y: auto;
}

.summary-item {
    padding: 8px 0;
    font-size: 14px;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border-color);
}

.summary-divider {
    height: 1px;
    background: var(--border-color);
    margin: 20px 0;
}

.summary-count {
    font-size: 24px;
    font-weight: 800;
    color: var(--accent-primary);
    text-align: center;
    padding: 12px 0;
}

.summary-count span {
    font-size: 36px;
}

.summary-note {
    font-size: 13px;
    color: var(--text-muted);
    text-align: center;
    line-height: 1.5;
    margin-top: 8px;
}

/* Bot Preview in Configurator */
.bot-preview {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.bot-preview-avatar {
    position: relative;
    width: 48px;
    height: 48px;
    min-width: 48px;
}

.bot-preview-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #39ecfe, #5865f2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.bot-preview-status {
    position: absolute;
    bottom: -1px;
    right: -1px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #3ba55d;
    border: 3px solid var(--bg-card);
    box-shadow: 0 0 8px rgba(59, 165, 93, 0.5);
}

.bot-preview-info {
    flex: 1;
    min-width: 0;
}

.bot-preview-name-row {
    display: flex;
    align-items: center;
    gap: 6px;
}

.bot-name-input {
    background: transparent;
    border: none;
    outline: none;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    font-family: inherit;
    padding: 2px 4px;
    border-radius: 4px;
    width: 140px;
    transition: background 0.2s ease;
    cursor: text;
}

.bot-name-input:hover {
    background: rgba(255, 255, 255, 0.06);
}

.bot-name-input:focus {
    background: rgba(255, 255, 255, 0.1);
    outline: 1px solid rgba(57, 236, 254, 0.4);
}

.bot-badge {
    background: #5865f2;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 3px;
    display: inline-flex;
    align-items: center;
    gap: 2px;
    letter-spacing: 0.5px;
    flex-shrink: 0;
}

.bot-badge svg {
    vertical-align: middle;
}

.bot-preview-activity {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 4px;
    font-size: 13px;
    color: var(--text-muted);
    transition: all 0.3s ease;
}

.activity-icon {
    font-size: 14px;
}

.config-btn {
    width: 100%;
    margin-top: 24px;
}

/* ===== COMPARISON SECTION ===== */
.comparison-section {
    position: relative;
    z-index: 1;
    padding: 100px 24px;
    max-width: 900px;
    margin: 0 auto;
}

.comparison-table {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    overflow: hidden;
}

.comparison-header {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    background: var(--bg-secondary);
    font-weight: 700;
    font-size: 14px;
}

.comp-col {
    padding: 20px;
    text-align: center;
}

.comp-custom {
    background: rgba(57, 236, 254, 0.1);
    color: var(--accent-primary);
}

.comp-other {
    color: var(--text-muted);
}

.comparison-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    border-top: 1px solid var(--border-color);
    transition: var(--transition-normal);
}

.comparison-row:hover {
    background: rgba(57, 236, 254, 0.02);
}

.comp-feature {
    padding: 16px 20px;
    font-size: 14px;
    color: var(--text-primary);
}

.comp-check,
.comp-cross {
    padding: 16px 20px;
    text-align: center;
    font-size: 18px;
}

.comp-check {
    color: var(--accent-primary);
}

.comp-cross {
    color: #ff6b6b;
}

/* ===== FAQ SECTION ===== */
.faq-section {
    position: relative;
    z-index: 1;
    padding: 100px 24px;
    max-width: 800px;
    margin: 0 auto;
}

.faq-container {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition-normal);
}

.faq-item:hover {
    border-color: rgba(57, 236, 254, 0.3);
}

.faq-item.active {
    border-color: var(--accent-primary);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    cursor: pointer;
    font-weight: 600;
    font-size: 16px;
}

.faq-icon {
    font-size: 24px;
    color: var(--accent-primary);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding: 0 24px 20px;
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 15px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .configurator {
        grid-template-columns: 1fr;
    }

    .config-features {
        grid-template-columns: repeat(2, 1fr);
    }

    .config-summary {
        position: static;
    }
}

@media (max-width: 768px) {
    .config-features {
        grid-template-columns: 1fr;
    }

    .timeline {
        padding-left: 30px;
    }

    .timeline-icon {
        left: -30px;
        width: 28px;
        height: 28px;
        font-size: 12px;
    }
}