/* 
 * CSS Variables & Reset
 */
:root {
    --bg-dark: #0a0b0e;
    --bg-light: #14161a;
    --surface: rgba(255, 255, 255, 0.03);
    --blurple: #0099ff;
    --blurple-hover: #007acc;
    --hot-pink: #ff0080;
    --brand-gradient: linear-gradient(135deg, #0099ff 0%, #ff0080 100%);
    --text-main: #ffffff;
    --text-muted: #949ba4;
    --border: rgba(255, 255, 255, 0.08);
    --glow: 0 0 20px rgba(0, 153, 255, 0.3);

    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    --spacing-sm: 8px;
    --spacing-md: 24px;
    --spacing-lg: 48px;
    --spacing-xl: 96px;
    --border-radius: 16px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-dark);
    background-image:
        radial-gradient(circle at 15% 50%, rgba(0, 153, 255, 0.08) 0%, transparent 25%),
        radial-gradient(circle at 85% 30%, rgba(255, 0, 128, 0.08) 0%, transparent 25%);
    background-attachment: fixed;
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.2s ease;
}

ul {
    list-style: none;
}

/* 
 * Utility Classes
 */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 50px;
    font-family: var(--font-heading);
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.02em;
    line-height: 1;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.btn-primary {
    background: var(--brand-gradient);
    color: white;
    box-shadow: 0 8px 20px rgba(0, 153, 255, 0.3);
    border: none;
}

.btn-primary:hover {
    box-shadow: 0 10px 40px rgba(255, 0, 128, 0.4);
}

.btn-secondary {
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--text-main);
    border: 1px solid var(--border);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: var(--text-main);
}

.section-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: var(--spacing-sm);
    letter-spacing: -0.03em;
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    text-align: center;
    margin-bottom: var(--spacing-xl);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 300;
}

/* 
 * Header
 */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(10, 11, 14, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 1000;
    padding: var(--spacing-sm) 0;
    border-bottom: 1px solid var(--border);
}

body {
    padding-top: 80px;
    /* Offset for fixed header */
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--text-main);
    letter-spacing: -0.02em;
    display: flex;
    align-items: center;
}

.logo span {
    color: var(--text-main);
}

nav ul {
    display: flex;
    gap: var(--spacing-lg);
}

nav a {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--text-muted);
}

nav a:hover,
nav a.active {
    color: var(--text-main);
    color: var(--text-main);
}

/* 
 * Hero Section
 */
#hero {
    padding: 100px 0 80px;
    text-align: center;
    background-image: radial-gradient(circle at 50% 10%, rgba(0, 153, 255, 0.15) 0%, transparent 60%);
}


.hero-headline {
    font-family: var(--font-heading);
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: var(--spacing-md);
    letter-spacing: -0.04em;
    background: linear-gradient(to right, #ffffff, #a5a5a5);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.hero-subheadline {
    font-size: 1.25rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto var(--spacing-lg);
}

.hero-buttons {
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
}

/* 
 * Content Sections
 */
.content-section {
    padding: var(--spacing-xl) 0;
    flex: 1;
}

.bg-light {
    background-color: var(--bg-light);
}

/* 
 * Features Grid
 */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-lg);
}

.feature-card {
    background-color: var(--surface);
    backdrop-filter: blur(10px);
    padding: var(--spacing-lg);
    border-radius: var(--border-radius);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 100%;
    border: 1px solid var(--border);
    display: flex;
    flex-direction: column;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--glow);
    border-color: var(--blurple);
    background-color: rgba(255, 255, 255, 0.05);
}

.feature-icon {
    font-size: 2rem;
    margin-bottom: var(--spacing-md);
    color: var(--blurple);
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
}

.feature-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.premium-feature .feature-icon {
    color: var(--hot-pink);
}

.premium-feature:hover {
    border-color: rgba(235, 69, 158, 0.3);
}

/* 
 * Commands Table
 */
.commands-table-container {
    background-color: var(--surface);
    backdrop-filter: blur(10px);
    border-radius: var(--border-radius);
    overflow: hidden;
    border: 1px solid var(--border);
}

.commands-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}

.commands-table th,
.commands-table td {
    padding: var(--spacing-md) var(--spacing-lg);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.commands-table th {
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    background-color: rgba(0, 0, 0, 0.1);
}

.commands-table tr:last-child td {
    border-bottom: none;
}

.commands-table tr:hover {
    background-color: rgba(255, 255, 255, 0.02);
}

.command-code {
    font-family: 'Consolas', 'Monaco', monospace;
    background-color: rgba(0, 0, 0, 0.3);
    padding: 4px 8px;
    border-radius: 4px;
    color: var(--blurple);
    font-size: 0.9rem;
}

/* 
 * Legal & Text Pages
 */
.legal-content {
    background-color: var(--surface);
    backdrop-filter: blur(10px);
    padding: var(--spacing-xl);
    border-radius: var(--border-radius);
    max-width: 900px;
    margin: 0 auto;
    border: 1px solid var(--border);
}

.legal-content h2,
.legal-content h3 {
    margin-bottom: var(--spacing-md);
    color: var(--text-main);
}

.legal-content p,
.legal-content li {
    color: var(--text-muted);
    margin-bottom: var(--spacing-md);
}

/* 
 * Footer
 */
footer {
    background-color: rgba(10, 11, 14, 0.9);
    backdrop-filter: blur(10px);
    padding: var(--spacing-xl) 0 var(--spacing-lg);
    border-top: 1px solid var(--border);
    margin-top: auto;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
}

.footer-logo {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--blurple);
    margin-bottom: 4px;
}

.copyright {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.footer-links {
    display: flex;
    gap: var(--spacing-md);
}

.footer-links a {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--blurple);
}

/* 
 * Animations
 */
.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* 
 * Responsive Design
 */
@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: var(--spacing-sm);
    }

    .nav-links {
        display: flex;
        /* Fixed: Was none */
        gap: var(--spacing-md);
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero-headline {
        font-size: 2.5rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

    .section-title {
        font-size: 2rem;
    }

    .commands-table th,
    .commands-table td {
        padding: var(--spacing-sm);
        font-size: 0.9rem;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }
}

/* 
 * Pricing Cards (Premium Page)
 */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-md);
    max-width: 1000px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--surface);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border);
    border-radius: var(--border-radius);
    padding: var(--spacing-lg);
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-8px);
    border-color: var(--blurple);
    box-shadow: var(--glow);
    background: rgba(255, 255, 255, 0.05);
}

.pricing-card.popular {
    border-color: var(--blurple);
    background: rgba(0, 153, 255, 0.05);
}

.pricing-card.best-value {
    border-color: var(--hot-pink);
    background: rgba(255, 0, 128, 0.05);
    transform: scale(1.05);
}

.pricing-card.best-value:hover {
    transform: scale(1.05) translateY(-8px);
    box-shadow: 0 0 30px rgba(255, 0, 128, 0.2);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--blurple);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.pricing-header h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--text-muted);
    margin-bottom: 10px;
}

.pricing-header .price {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 20px;
}

.pricing-header .price span {
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 400;
}

.pricing-features {
    text-align: left;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
}

.pricing-features li {
    margin-bottom: 10px;
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* 
 * Commands Page Remake
 */
.category-header {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: var(--spacing-md);
    color: var(--text-main);
    display: flex;
    align-items: center;
    gap: 12px;
}

.command-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-md);
}

.command-card {
    padding: var(--spacing-md) !important;
    /* Override standard feature card padding if needed */
    align-items: flex-start !important;
}

.command-card .command-code {
    font-size: 1.1rem;
    padding: 6px 12px;
    margin-bottom: 12px;
    background: rgba(0, 0, 0, 0.4);
    display: inline-block;
    border-radius: 6px;
    font-family: monospace;
}

.command-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.5;
}

.premium-glow {
    border-color: rgba(255, 0, 128, 0.3);
    background: rgba(255, 0, 128, 0.02);
}

.premium-glow:hover {
    border-color: var(--hot-pink);
    box-shadow: 0 0 20px rgba(255, 0, 128, 0.2);
}

/* 
 * Guide Page Remake
 */
.guide-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: var(--spacing-lg);
    max-width: 1100px;
    margin: 0 auto;
}

@media (max-width: 900px) {
    .guide-grid {
        grid-template-columns: 1fr;
    }
}

.guide-card {
    background: var(--surface);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border);
    border-radius: var(--border-radius);
    padding: var(--spacing-lg);
}

.guide-header {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border);
}

.guide-icon {
    font-size: 1.5rem;
}

/* Steps Styling */
.steps-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.step-item {
    display: flex;
    gap: 20px;
}

.step-number {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    background: var(--blurple);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-family: var(--font-heading);
    box-shadow: 0 4px 10px rgba(0, 153, 255, 0.3);
}

.step-content h3 {
    font-family: var(--font-heading);
    color: var(--text-main);
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.step-content p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 10px;
}

.step-list {
    list-style: disc;
    margin-left: 20px;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.step-list li {
    margin-bottom: 5px;
}

.alert-box {
    background: rgba(235, 69, 158, 0.1);
    border: 1px solid rgba(235, 69, 158, 0.3);
    color: #ff80bf;
    padding: 10px 15px;
    border-radius: 8px;
    font-size: 0.9rem;
}

/* Secondary Section */
.secondary-guides {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.premium-guide-border {
    border-color: var(--hot-pink);
    box-shadow: 0 0 20px rgba(255, 0, 128, 0.05);
}

.feature-list {
    list-style: none;
}

.feature-list li {
    margin-bottom: 12px;
    color: var(--text-muted);
    font-size: 0.95rem;
    padding-left: 20px;
    position: relative;
}

.feature-list li::before {
    content: "•";
    color: var(--blurple);
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* 
 * Features Page Remake (Showcase Layout)
 */
.features-showcase {
    display: flex;
    flex-direction: column;
    gap: 120px;
}

.showcase-item {
    display: flex;
    align-items: center;
    gap: 80px;
}

.showcase-item.reverse {
    flex-direction: row-reverse;
}

.showcase-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.showcase-icon-box {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, rgba(0, 153, 255, 0.1) 0%, rgba(255, 0, 128, 0.1) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    box-shadow: 0 0 50px rgba(0, 153, 255, 0.2);
    backdrop-filter: blur(20px);
    transition: all 0.5s ease;
}

.showcase-item:hover .showcase-icon-box {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 0 80px rgba(255, 0, 128, 0.3);
}

/* 
 * Uptime Page Styles
 */
.status-hero {
    margin-top: 60px;
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.global-status-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(0, 255, 128, 0.1);
    border: 1px solid rgba(0, 255, 128, 0.3);
    color: #00ff80;
    padding: 8px 20px;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-weight: 600;
    margin-bottom: var(--spacing-md);
    box-shadow: 0 0 20px rgba(0, 255, 128, 0.2);
}

.pulse-dot {
    width: 10px;
    height: 10px;
    background-color: #00ff80;
    border-radius: 50%;
    position: relative;
}

.pulse-dot::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background-color: inherit;
    border-radius: 50%;
    animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
}

@keyframes pulse-ring {
    0% {
        width: 100%;
        height: 100%;
        opacity: 0.8;
    }

    100% {
        width: 300%;
        height: 300%;
        opacity: 0;
    }
}

.uptime-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-xl);
}

.uptime-card {
    background: var(--surface);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border);
    border-radius: var(--border-radius);
    padding: var(--spacing-md);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.3s ease;
    min-height: 160px;
}

.uptime-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--border);
    /* Slightly lighter border on hover if desired */
}

/* Service Variations */
.uptime-card.bot:hover {
    border-color: var(--blurple);
    box-shadow: 0 0 20px rgba(0, 153, 255, 0.15);
}

.uptime-card.db:hover {
    border-color: #ff9900;
    box-shadow: 0 0 20px rgba(255, 153, 0, 0.15);
}

.uptime-card.api:hover {
    border-color: #ff0080;
    box-shadow: 0 0 20px rgba(255, 0, 128, 0.15);
}

.uptime-card.web:hover {
    border-color: #00ff80;
    box-shadow: 0 0 20px rgba(0, 255, 128, 0.15);
}

.uptime-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: var(--spacing-sm);
}

.uptime-icon {
    font-size: 1.5rem;
}

.uptime-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--text-main);
}

.uptime-status {
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding-top: var(--spacing-sm);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.status-indicator {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.9rem;
    color: #00ff80;
    /* Operational Green */
    font-weight: 500;
}

.status-dot-sm {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #00ff80;
}

.status-dot-sm.degraded {
    background-color: #ffcc00;
}

.status-dot-sm.down {
    background-color: #ff0040;
}

.latency-metric {
    font-family: monospace;
    color: var(--text-muted);
    font-size: 0.85rem;
    background: rgba(0, 0, 0, 0.3);
    padding: 2px 6px;
    border-radius: 4px;
}

/* Incident History */
.incidents-container {
    background: var(--surface);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border);
    border-radius: var(--border-radius);
    padding: var(--spacing-lg);
    max-width: 800px;
    margin: 0 auto;
}

.incident-day {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-muted);
    font-size: 0.95rem;
}

.incident-day:last-child {
    border-bottom: none;
}

.incident-status {
    color: #00ff80;
    font-weight: 500;
}


.showcase-content {
    flex: 1;
}


.showcase-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.showcase-desc {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 30px;
    line-height: 1.6;
}

.showcase-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.showcase-list li {
    font-size: 1rem;
    color: var(--text-main);
    display: flex;
    align-items: center;
    gap: 10px;
}

.text-gradient {
    background: var(--brand-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

@media (max-width: 900px) {

    .showcase-item,
    .showcase-item.reverse {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }

    .showcase-visual {
        width: 100%;
    }

    .showcase-list {
        align-items: center;
        /* Center list items for mobile */
        text-align: left;
    }
}

/* 
 * Home Page Remake (Bento & Hero)
 */

/* Status Pill */
.status-pill {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 8px 16px;
    border-radius: 50px;
    margin-bottom: 25px;
    font-size: 0.9rem;
    color: var(--text-muted);
    backdrop-filter: blur(5px);
}

.status-dot {
    width: 8px;
    height: 8px;
    background: #00ff88;
    border-radius: 50%;
    margin-right: 8px;
    box-shadow: 0 0 10px rgba(0, 255, 136, 0.4);
}

/* Stats Bar */
.stats-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    margin-top: 60px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 20px 40px;
    border-radius: 50px;
    display: inline-flex;
}

.stat-item {
    text-align: center;
}

.stat-value {
    display: block;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--text-main);
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.stat-divider {
    width: 1px;
    height: 30px;
    background: rgba(255, 255, 255, 0.1);
}

/* Bento Grid */
.bento-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: var(--spacing-md);
    margin-top: 20px;
}

.bento-card {
    background: var(--surface);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border);
    border-radius: var(--border-radius);
    padding: 40px;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.bento-card:hover {
    transform: translateY(-5px);
    border-color: var(--blurple);
    background: rgba(255, 255, 255, 0.05);
}

.bento-large {
    height: 100%;
}

.bento-stack {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.bento-medium {
    flex: 1;
}

.bento-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    background: rgba(255, 255, 255, 0.05);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
}

.bento-card h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: white;
}

.bento-card p {
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 20px;
}

.btn-sm {
    display: inline-block;
    color: var(--blurple);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.btn-sm:hover {
    color: white;
}

.btn-link {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s ease;
}

.btn-link:hover {
    color: white;
}

.hide-mobile {
    display: block;
}

.show-mobile-only {
    display: none;
}

@media (max-width: 900px) {
    .bento-grid {
        grid-template-columns: 1fr;
    }

    .stats-bar {
        flex-direction: column;
        gap: 20px;
        width: 100%;
        border-radius: 20px;
    }

    .stat-divider {
        width: 100%;
        height: 1px;
    }

    .hide-mobile {
        display: none;
    }

    .show-mobile-only {
        display: block;
    }
}

/* Secure Payment Badge (CSS-only) */
.secure-badge {
    margin-top: 25px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 12px 24px;
    border-radius: 12px;
    display: inline-block;
    text-align: center;
    backdrop-filter: blur(5px);
}

.secure-text {
    font-size: 0.95rem;
    color: var(--text-main);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.secure-icon {
    font-size: 1.1rem;
}

.brand-razorpay {
    color: #3395ff;
    font-weight: 700;
}

.payment-methods {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 6px;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.8;
}