/* ========================================
   BC DartCounter - Global Styles
   ======================================== */

:root {
    --primary: #14b8a6;
    --primary-dark: #0d9488;
    --purple: #8b5cf6;
    --black: #000;
    --dark: #0a0a0a;
    --dark-light: #111;
    --gray-900: #1a1a1a;
    --gray-800: #1f2937;
    --gray-700: #374151;
    --gray-600: #4b5563;
    --gray-500: #6b7280;
    --gray-400: #9ca3af;
    --gray-300: #d1d5db;
    --white: #fff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: var(--black);
    color: var(--gray-300);
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* ========================================
   Buttons
   ======================================== */

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.5rem;
    border-radius: 10px;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    box-shadow: 0 4px 14px rgba(20, 184, 166, 0.4);
}

    .btn-primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(20, 184, 166, 0.5);
    }

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

    .btn-secondary:hover {
        background: rgba(255, 255, 255, 0.1);
        border-color: rgba(255, 255, 255, 0.3);
    }

.btn-large {
    padding: 1rem 2rem;
    font-size: 1rem;
}

.full-width {
    width: 100%;
    justify-content: center;
}

/* ========================================
   Background Blobs
   ======================================== */

.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    pointer-events: none;
}

.blob-1 {
    width: 600px;
    height: 600px;
    background: var(--primary);
    top: -200px;
    right: -100px;
    opacity: 0.15;
}

.blob-2 {
    width: 500px;
    height: 500px;
    background: var(--purple);
    bottom: -150px;
    left: -100px;
    opacity: 0.12;
}

.blob-3 {
    width: 400px;
    height: 400px;
    background: var(--primary);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.08;
}

.blob-4 {
    width: 500px;
    height: 500px;
    background: var(--primary);
    top: 20%;
    right: -200px;
    opacity: 0.08;
}

.blob-5 {
    width: 500px;
    height: 500px;
    background: var(--purple);
    bottom: 10%;
    left: -200px;
    opacity: 0.08;
}

.blob-6 {
    width: 400px;
    height: 400px;
    background: var(--primary);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.06;
}

.blob-7 {
    width: 600px;
    height: 600px;
    background: var(--primary);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.1;
}

/* ========================================
   Hero Section
   ======================================== */

.hero {
    min-height: 100vh;
    padding: 8rem 1.5rem 5rem;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    position: relative;
    z-index: 1;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, rgba(20, 184, 166, 0.2) 0%, rgba(139, 92, 246, 0.2) 100%);
    color: var(--primary);
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(20, 184, 166, 0.3);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #fff;
    /* Engin border, background eša box */
}

    .hero-title span,
    .hero-title .highlight {
        color: #14b8a6; /* Teal litur į "pķluteljari" */
    }

.hero h1,
.hero-text h1 {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #fff;
    border: none;
    outline: none;
    box-shadow: none;
    background: none;
}

    .hero h1 .gradient-text {
        background: linear-gradient(135deg, var(--primary) 0%, var(--purple) 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        border: none;
        outline: none;
    }

.gradient-text {
    background: linear-gradient(135deg, var(--primary) 0%, var(--purple) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    font-size: 1.125rem;
    color: var(--gray-400);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
}

/* Phone Mockup */
.hero-phone {
    display: flex;
    justify-content: center;
}

.phone-frame {
    width: 280px;
    height: 560px;
    background: linear-gradient(145deg, #1a1a1a 0%, #0a0a0a 100%);
    border-radius: 40px;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: #0a0f12;
    border-radius: 32px;
    overflow: hidden;
    padding: 1.5rem;
}

.app-header {
    text-align: center;
    font-size: 0.75rem;
    color: var(--gray-500);
    margin-bottom: 1.5rem;
}

.app-scores {
    display: flex;
    justify-content: space-between;
    margin-bottom: 2rem;
}

.player-score {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.player-name {
    font-size: 0.7rem;
    color: var(--gray-500);
}

.score {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
}

    .score.active {
        color: var(--primary);
    }

.avg {
    font-size: 0.65rem;
    color: var(--gray-500);
}

.app-throw {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 1rem;
    margin-bottom: 1rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.throw-label {
    font-size: 0.7rem;
    color: var(--gray-500);
}

.throw-value {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--white);
}

.throw-total {
    font-size: 1rem;
    color: var(--primary);
    font-weight: 600;
}

.app-numpad {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
}

.numpad-btn {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 0.75rem;
    text-align: center;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

    .numpad-btn.confirm {
        background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
        border: none;
    }

/* ========================================
   Sections
   ======================================== */

.section {
    padding: 6rem 1.5rem;
    position: relative;
    overflow: hidden;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

    .section-header h2 {
        font-size: 2.25rem;
        font-weight: 700;
        color: var(--white);
        margin-bottom: 0.75rem;
    }

    .section-header p {
        color: var(--gray-400);
        font-size: 1.1rem;
    }

/* ========================================
   Features Section
   ======================================== */

.features-section {
    position: relative;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    position: relative;
    z-index: 1;
}

.feature-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    padding: 1.75rem;
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: all 0.3s ease;
}

    .feature-card:hover {
        border-color: rgba(20, 184, 166, 0.3);
        transform: translateY(-4px);
    }

.feature-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.feature-card p {
    font-size: 0.9rem;
    color: var(--gray-400);
    line-height: 1.6;
}

/* ========================================
   Benefits Section
   ======================================== */

.benefits-section {
    position: relative;
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.benefits-content h2 {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.75rem;
}

.benefits-subtitle {
    color: var(--gray-400);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.benefits-list {
    list-style: none;
}

    .benefits-list li {
        display: flex;
        align-items: flex-start;
        gap: 0.75rem;
        margin-bottom: 1rem;
        color: var(--gray-300);
    }

    .benefits-list svg {
        color: var(--primary);
        flex-shrink: 0;
        margin-top: 2px;
    }

.stats-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    border-radius: 20px;
    padding: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
}

.stat {
    text-align: center;
}

.stat-value {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary) 0%, var(--purple) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--gray-400);
}

/* ========================================
   How It Works Section
   ======================================== */

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.step {
    text-align: center;
}

.step-number {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    box-shadow: 0 4px 14px rgba(20, 184, 166, 0.4);
}

.step h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.step p {
    font-size: 0.95rem;
    color: var(--gray-400);
    line-height: 1.6;
}

/* ========================================
   Download Section
   ======================================== */

.download-section {
    text-align: center;
}

.download-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 360px;
    margin: 0 auto;
}

.download-btn {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    padding: 1.25rem 1.5rem;
    transition: all 0.3s ease;
}

    .download-btn.android:hover {
        border-color: rgba(20, 184, 166, 0.5);
        background: rgba(255, 255, 255, 0.08);
    }

    .download-btn.disabled {
        opacity: 0.5;
        cursor: not-allowed;
        background: rgba(255, 255, 255, 0.02);
        border-color: rgba(255, 255, 255, 0.05);
    }

.download-icon {
    width: 44px;
    height: 44px;
    background: rgba(34, 197, 94, 0.15);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.download-btn.disabled .download-icon {
    background: rgba(156, 163, 175, 0.1);
}

.download-text {
    text-align: left;
    flex: 1;
}

.download-label {
    display: block;
    font-size: 0.8rem;
    color: var(--gray-400);
}

.download-platform {
    display: block;
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--white);
}

.download-btn.disabled .download-platform {
    color: var(--gray-400);
}

.download-btn svg {
    color: var(--gray-500);
}

.download-version {
    font-size: 0.85rem;
    color: var(--gray-500);
    margin-top: 1.5rem;
}

/* ========================================
   Premium Section
   ======================================== */

.pricing-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

    .pricing-card.premium {
        background: linear-gradient(135deg, rgba(20, 184, 166, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
        border-color: rgba(20, 184, 166, 0.3);
        position: relative;
    }

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    padding: 0.25rem 1rem;
    border-radius: 9999px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--white);
}

.pricing-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gray-400);
    margin-bottom: 1.5rem;
}

.pricing-card.premium .price {
    color: var(--primary);
}

.price span {
    font-size: 1rem;
    font-weight: 400;
    color: var(--gray-500);
}

.pricing-features {
    list-style: none;
    margin-bottom: 1.5rem;
}

    .pricing-features li {
        display: flex;
        align-items: center;
        gap: 0.75rem;
        margin-bottom: 0.75rem;
        color: var(--gray-300);
    }

.check {
    color: var(--primary);
}

/* ========================================
   CTA Section
   ======================================== */

.cta-section {
    text-align: center;
}

.cta-content {
    position: relative;
    z-index: 1;
}

    .cta-content h2 {
        font-size: 2.25rem;
        font-weight: 700;
        color: var(--white);
        margin-bottom: 0.75rem;
    }

    .cta-content p {
        color: var(--gray-400);
        margin-bottom: 2rem;
        font-size: 1.1rem;
    }

/* ========================================
   Footer
   ======================================== */

.footer {
    padding: 2rem 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-copyright {
    color: var(--gray-500);
    font-size: 0.875rem;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
}

    .footer-brand span {
        color: var(--gray-500);
    }

    .footer-brand a {
        color: var(--white);
        font-weight: 600;
    }

        .footer-brand a:hover {
            color: var(--primary);
        }

/* ========================================
   Responsive Design
   ======================================== */

@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-phone {
        order: -1;
    }

    .phone-frame {
        width: 240px;
        height: 480px;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .benefits-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .benefits-list {
        display: inline-block;
        text-align: left;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .section {
        padding: 4rem 1rem;
    }

    .section-header h2 {
        font-size: 1.875rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .steps-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .stats-card {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
        padding: 1.5rem;
    }

    .stat-value {
        font-size: 2rem;
    }

    .footer-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .blob-1, .blob-2 {
        width: 300px;
        height: 300px;
    }

    .blob-3, .blob-4, .blob-5, .blob-6, .blob-7 {
        display: none;
    }


}
/* Hide all Blazor UI elements */
#blazor-error-ui,
#components-reconnect-modal,
.components-reconnect-modal,
.blazor-error-boundary,
#blazor-reconnect-modal {
    display: none !important;
    visibility: hidden !important;
}

html, body {
    background: #000 !important;
}

/* ==================== ADMIN STYLES ==================== */

.admin-layout {
    display: flex;
    min-height: 100vh;
    background: #0a0f12;
}

/* Sidebar */
.admin-sidebar {
    width: 250px;
    background: rgba(15, 20, 25, 0.95);
    border-right: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    flex-direction: column;
    padding: 1.5rem 1rem;
}

.admin-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0 0.5rem 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    margin-bottom: 1.5rem;
}

    .admin-brand span {
        font-size: 1.1rem;
        font-weight: 600;
        color: #fff;
    }

.admin-nav {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
}

.nav-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    color: #71717a;
    text-decoration: none;
    transition: all 0.2s;
}

    .nav-item:hover {
        background: rgba(255, 255, 255, 0.05);
        color: #a1a1aa;
    }

    .nav-item.active {
        background: rgba(20, 184, 166, 0.15);
        color: #14b8a6;
    }

.admin-user {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.admin-name {
    font-size: 0.875rem;
    color: #a1a1aa;
}

.logout-btn {
    padding: 0.5rem;
    background: transparent;
    border: none;
    color: #71717a;
    cursor: pointer;
    border-radius: 6px;
    transition: all 0.2s;
}

    .logout-btn:hover {
        background: rgba(239, 68, 68, 0.1);
        color: #ef4444;
    }

/* Main Content */
.admin-main {
    flex: 1;
    padding: 2rem;
    overflow-y: auto;
}

.admin-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2rem;
}

    .admin-header h1 {
        font-size: 1.75rem;
        color: #fff;
    }

.admin-date {
    color: #71717a;
    font-size: 0.875rem;
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.stat-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
}

.stat-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .stat-icon.users {
        background: rgba(59, 130, 246, 0.15);
        color: #3b82f6;
    }

    .stat-icon.premium {
        background: rgba(245, 158, 11, 0.15);
        color: #f59e0b;
    }

    .stat-icon.games {
        background: rgba(20, 184, 166, 0.15);
        color: #14b8a6;
    }

    .stat-icon.promo {
        background: rgba(139, 92, 246, 0.15);
        color: #8b5cf6;
    }

.stat-value {
    display: block;
    font-size: 1.75rem;
    font-weight: 700;
    color: #fff;
}

.stat-label {
    font-size: 0.875rem;
    color: #71717a;
}

/* Dashboard Grid */
.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.dashboard-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 1.5rem;
}

    .dashboard-card h3 {
        font-size: 1rem;
        color: #a1a1aa;
        margin-bottom: 1rem;
    }

/* User List */
.user-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.user-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 8px;
}

.user-avatar {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 600;
}

.user-info {
    flex: 1;
}

.user-name {
    display: block;
    font-weight: 500;
    color: #fff;
}

.user-email {
    display: block;
    font-size: 0.75rem;
    color: #71717a;
}

.user-date {
    font-size: 0.75rem;
    color: #52525b;
}

/* Tables */
.promo-table-card, .users-table-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    overflow: hidden;
}

.promo-table, .users-table {
    width: 100%;
    border-collapse: collapse;
}

    .promo-table th, .users-table th {
        padding: 1rem;
        text-align: left;
        font-size: 0.75rem;
        font-weight: 600;
        color: #71717a;
        text-transform: uppercase;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .promo-table td, .users-table td {
        padding: 1rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        color: #a1a1aa;
    }

    .promo-table tr.used td {
        opacity: 0.5;
    }

.code-text {
    font-family: monospace;
    font-weight: 600;
    color: #14b8a6;
}

.status-badge {
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 500;
}

    .status-badge.active {
        background: rgba(34, 197, 94, 0.15);
        color: #22c55e;
    }

    .status-badge.used {
        background: rgba(71, 85, 105, 0.3);
        color: #94a3b8;
    }

    .status-badge.inactive {
        background: rgba(239, 68, 68, 0.15);
        color: #ef4444;
    }

/* Buttons */
.btn-create {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    background: #14b8a6;
    border: none;
    border-radius: 8px;
    color: #fff;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

    .btn-create:hover {
        background: #0d9488;
    }

.copy-btn, .delete-btn {
    padding: 0.375rem;
    background: transparent;
    border: none;
    color: #71717a;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.2s;
}

    .copy-btn:hover {
        color: #14b8a6;
    }

    .delete-btn:hover {
        color: #ef4444;
        background: rgba(239, 68, 68, 0.1);
    }

.search-box {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
}

    .search-box input {
        background: transparent;
        border: none;
        color: #fff;
        font-size: 0.875rem;
        outline: none;
        width: 200px;
    }

    .search-box svg {
        color: #71717a;
    }

.alert.success {
    padding: 1rem;
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
    border-radius: 8px;
    color: #22c55e;
    margin-bottom: 1rem;
}

.premium-badge {
    padding: 0.25rem 0.5rem;
    background: rgba(245, 158, 11, 0.15);
    border-radius: 4px;
    color: #f59e0b;
    font-size: 0.75rem;
}

.free-badge {
    color: #71717a;
    font-size: 0.875rem;
}

.admin-badge {
    padding: 0.125rem 0.375rem;
    background: rgba(139, 92, 246, 0.15);
    border-radius: 4px;
    color: #a78bfa;
    font-size: 0.65rem;
    font-weight: 600;
    margin-left: 0.5rem

}

/* Feature Icons with SVG */
.feature-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    background: rgba(20, 184, 166, 0.1);
    color: var(--primary);
}

    .feature-icon svg {
        width: 28px;
        height: 28px;
    }

/* Download Icons */
.download-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .download-icon.android-icon {
        background: rgba(34, 197, 94, 0.15);
        color: #22c55e;
    }

    .download-icon.ios-icon {
        background: rgba(156, 163, 175, 0.1);
        color: #9ca3af;
    }

/* Popular badge with icon */
.popular-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
}

    .popular-badge svg {
        fill: currentColor;
        stroke: none;
    }