/* 
 * KONTIFY V6 - CORE FRAMEWORK (kontify.css)
 * Version: 6.0.0
 * Description: Base styles, reset, variables, and core utilities.
 */

/* =========================================
   1. VARIABLES & THEME SETUP
   ========================================= */
:root {
    /* Brand Colors */
    --color-primary: #B8FF3D;
    /* Lime Neon */
    --color-primary-hover: #a3e635;
    --color-secondary: #10B981;
    /* Emerald Green */
    --color-accent: #32ff8a;
    /* Bright Green */

    /* Backgrounds */
    --bg-dark: #0A1410;
    /* Main Dark Background */
    --bg-darker: #050a08;
    --bg-card: #0F1A14;
    /* Card Background */
    --bg-card-hover: #132816;
    --bg-glass: rgba(10, 20, 16, 0.85);

    /* Typography Colors */
    --text-main: #FFFFFF;
    --text-muted: #9CA3AF;
    --text-dim: #6B7280;
    --text-inverse: #000000;

    /* Spacing */
    --spacing-xs: 0.25rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;
    --spacing-2xl: 3rem;
    --spacing-3xl: 4rem;

    /* Borders & Radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.75rem;
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;
    --radius-full: 9999px;

    --border-color: rgba(255, 255, 255, 0.1);
    --border-highlight: rgba(184, 255, 61, 0.3);

    /* Effects */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-neon: 0 0 20px rgba(184, 255, 61, 0.2);

    /* Transitions */
    --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-normal: 300ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 500ms cubic-bezier(0.4, 0, 0.2, 1);
}

/* =========================================
   2. RESET & BASE STYLES
   ========================================= */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    line-height: 1.5;
    -webkit-text-size-adjust: 100%;
    scroll-behavior: smooth;
    background-color: var(--bg-dark);
    color: var(--text-main);
}

body {
    min-height: 100vh;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition-fast);
}

img,
video {
    max-width: 100%;
    height: auto;
    display: block;
}

button,
input,
select,
textarea {
    font: inherit;
    color: inherit;
    background: transparent;
    border: none;
    outline: none;
}

/* =========================================
   3. TYPOGRAPHY SYSTEM
   ========================================= */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--text-main);
    margin-bottom: var(--spacing-md);
}

h1 {
    font-size: 3.5rem;
    font-weight: 800;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 2rem;
}

h4 {
    font-size: 1.5rem;
}

h5 {
    font-size: 1.25rem;
}

h6 {
    font-size: 1rem;
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    h3 {
        font-size: 1.75rem;
    }
}

p {
    margin-bottom: var(--spacing-md);
    color: var(--text-muted);
}

.text-gradient {
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.text-lime {
    color: var(--color-primary);
}

.text-white {
    color: var(--text-main);
}

.text-gray {
    color: var(--text-muted);
}

.font-bold {
    font-weight: 700;
}

.font-black {
    font-weight: 900;
}

.text-center {
    text-align: center;
}

.text-right {
    text-align: right;
}

/* =========================================
   4. LAYOUT UTILITIES
   ========================================= */
.container {
    width: 100%;
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
    padding-left: var(--spacing-md);
    padding-right: var(--spacing-md);
}

.grid {
    display: grid;
    gap: var(--spacing-lg);
}

.grid-cols-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
}

.grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

@media (max-width: 1024px) {
    .lg\:grid-cols-3 {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .md\:grid-cols-2 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .md\:grid-cols-1 {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {

    .grid-cols-2,
    .grid-cols-3,
    .grid-cols-4 {
        grid-template-columns: 1fr;
    }
}

.flex {
    display: flex;
}

.flex-col {
    flex-direction: column;
}

.flex-row {
    flex-direction: row;
}

.items-center {
    align-items: center;
}

.justify-center {
    justify-content: center;
}

.justify-between {
    justify-content: space-between;
}

.flex-wrap {
    flex-wrap: wrap;
}

.gap-4 {
    gap: 1rem;
}

.gap-8 {
    gap: 2rem;
}

.hidden {
    display: none;
}

.block {
    display: block;
}

.inline-block {
    display: inline-block;
}

.relative {
    position: relative;
}

.absolute {
    position: absolute;
}

.fixed {
    position: fixed;
}

.inset-0 {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.z-10 {
    z-index: 10;
}

.z-50 {
    z-index: 50;
}

/* =========================================
   5. COMPONENT: BUTTONS
   ========================================= */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    transition: all var(--transition-normal);
    cursor: pointer;
    text-align: center;
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
    color: var(--text-inverse);
    box-shadow: var(--shadow-neon);
    border: 1px solid transparent;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(184, 255, 61, 0.4);
    filter: brightness(1.1);
}

.btn-outline {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--text-main);
}

.btn-outline:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
    background: rgba(184, 255, 61, 0.05);
}

.btn-ghost {
    background: transparent;
    color: var(--text-muted);
}

.btn-ghost:hover {
    color: var(--text-main);
    background: rgba(255, 255, 255, 0.05);
}

.btn-lg {
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
    border-radius: var(--radius-lg);
}

/* =========================================
   6. COMPONENT: CARDS
   ========================================= */
.card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: var(--spacing-xl);
    transition: all var(--transition-normal);
}

.card:hover {
    border-color: var(--border-highlight);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.card-glass {
    background: rgba(15, 26, 20, 0.6);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

/* =========================================
   7. COMPONENT: FORMS
   ========================================= */
.form-group {
    margin-bottom: var(--spacing-lg);
}

.form-label {
    display: block;
    margin-bottom: var(--spacing-xs);
    font-weight: 500;
    color: var(--text-main);
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    background-color: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    color: var(--text-main);
    transition: all var(--transition-fast);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 2px rgba(184, 255, 61, 0.1);
    outline: none;
}

/* =========================================
   8. UTILITIES: SPACING & SIZING
   ========================================= */
.mt-4 {
    margin-top: 1rem;
}

.mb-4 {
    margin-bottom: 1rem;
}

.my-8 {
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.py-12 {
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.py-24 {
    padding-top: 6rem;
    padding-bottom: 6rem;
}

.px-4 {
    padding-left: 1rem;
    padding-right: 1rem;
}

.w-full {
    width: 100%;
}

.h-full {
    height: 100%;
}

.max-w-7xl {
    max-width: 80rem;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

/* =========================================
   9. ANIMATIONS
   ========================================= */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.8s ease-out forwards;
}

@keyframes pulse-glow {

    0%,
    100% {
        box-shadow: 0 0 15px rgba(184, 255, 61, 0.2);
    }

    50% {
        box-shadow: 0 0 25px rgba(184, 255, 61, 0.5);
    }
}

.pulse-glow {
    animation: pulse-glow 2s infinite;
}

/* =========================================
   10. FOOTER STYLES
   ========================================= */
.footer {
    background-color: #000000;
    border-top: 1px solid var(--border-color);
    padding: var(--spacing-3xl) 0;
}

.footer-links h4 {
    color: var(--text-main);
    font-size: 1.1rem;
    margin-bottom: var(--spacing-md);
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: var(--spacing-sm);
}

.footer-links a {
    color: var(--text-muted);
}

.footer-links a:hover {
    color: var(--color-primary);
}

/* =========================================
   11. HEADER / NAVBAR
   ========================================= */
.navbar {
    background-color: rgba(10, 20, 16, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
}

.nav-link {
    color: var(--text-muted);
    font-weight: 500;
    padding: 0.5rem 1rem;
    transition: color var(--transition-fast);
}

.nav-link:hover,
.nav-link.active {
    color: var(--color-primary);
}

/* =========================================
   12. RESPONSIVE HELPERS
   ========================================= */
@media (min-width: 640px) {
    .sm\:block {
        display: block;
    }

    .sm\:hidden {
        display: none;
    }
}

@media (min-width: 768px) {
    .md\:block {
        display: block;
    }

    .md\:hidden {
        display: none;
    }
}

@media (min-width: 1024px) {
    .lg\:block {
        display: block;
    }

    .lg\:hidden {
        display: none;
    }
}
/* 
 * KONTIFY V6.2 - THEME OVERRIDES
 * Version: 6.2.0
 * Description: Specific theme styling, glassmorphism, and advanced effects.
 */

/* =========================================
   1. HERO SECTION
   ========================================= */
.hero-section {
    position: relative;
    padding-top: 8rem;
    padding-bottom: 6rem;
    overflow: hidden;
}

.hero-bg-glow {
    position: absolute;
    top: -20%;
    left: 50%;
    transform: translateX(-50%);
    width: 120%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(16, 185, 129, 0.15) 0%, rgba(10, 20, 16, 0) 70%);
    z-index: 0;
    pointer-events: none;
}

.hero-title {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: linear-gradient(to right, #ffffff, #e0e0e0);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 2.5rem;
}

/* =========================================
   2. GLASSMORPHISM CARDS
   ========================================= */
.glass-panel {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.36);
}

.glass-panel:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(184, 255, 61, 0.2);
}

/* =========================================
   3. FEATURE ICONS
   ========================================= */
.feature-icon-wrapper {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(184, 255, 61, 0.1);
    border: 1px solid rgba(184, 255, 61, 0.2);
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon-wrapper {
    transform: scale(1.1) rotate(5deg);
    background: rgba(184, 255, 61, 0.2);
}

.feature-icon {
    width: 32px;
    height: 32px;
    color: var(--color-primary);
}

/* =========================================
   4. TESTIMONIALS
   ========================================= */
.testimonial-card {
    background: #0F1A14;
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid var(--color-primary);
    object-fit: cover;
}

.testimonial-quote {
    font-size: 1.1rem;
    font-style: italic;
    color: #d1d5db;
    margin-bottom: 1.5rem;
}

/* =========================================
   5. PRICING TABLES
   ========================================= */
.pricing-card {
    background: #0A1410;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
}

.pricing-card.popular {
    border-color: var(--color-primary);
    background: linear-gradient(180deg, rgba(184, 255, 61, 0.05) 0%, rgba(10, 20, 16, 0) 100%);
}

.pricing-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--color-primary);
    color: #000;
    font-size: 0.75rem;
    font-weight: 800;
    padding: 0.25rem 0.75rem;
    border-radius: 99px;
    text-transform: uppercase;
}

.price-amount {
    font-size: 3.5rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
}

.price-period {
    color: var(--text-muted);
    font-size: 1rem;
}

/* =========================================
   6. DASHBOARD SPECIFICS
   ========================================= */
.sidebar {
    background: #050a08;
    border-right: 1px solid rgba(255, 255, 255, 0.05);
}

.sidebar-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    border-radius: 12px;
    color: var(--text-muted);
    transition: all 0.2s;
}

.sidebar-link:hover,
.sidebar-link.active {
    background: rgba(184, 255, 61, 0.1);
    color: var(--color-primary);
}

.stat-card {
    background: #132816;
    border-radius: 16px;
    padding: 1.5rem;
    border: 1px solid rgba(184, 255, 61, 0.1);
}

.stat-value {
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
}

.stat-label {
    color: var(--text-muted);
    font-size: 0.875rem;
}

/* =========================================
   7. FORM ELEMENTS V6
   ========================================= */
.input-v6 {
    background: #050a08;
    border: 1px solid #1f2937;
    border-radius: 12px;
    padding: 1rem;
    color: #fff;
    font-size: 1rem;
}

.input-v6:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 4px rgba(184, 255, 61, 0.1);
}

.checkbox-v6 {
    width: 1.25rem;
    height: 1.25rem;
    border-radius: 4px;
    border: 2px solid var(--text-muted);
    background: transparent;
    appearance: none;
    cursor: pointer;
}

.checkbox-v6:checked {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
    background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 16 16' fill='black' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M12.207 4.793a1 1 0 010 1.414l-5 5a1 1 0 01-1.414 0l-2-2a1 1 0 011.414-1.414L6.5 9.086l4.293-4.293a1 1 0 011.414 0z'/%3e%3c/svg%3e");
}

/* =========================================
   8. UTILITY CLASSES EXTRA
   ========================================= */
.text-balance {
    text-wrap: balance;
}

.backdrop-blur-xl {
    backdrop-filter: blur(24px);
}

.border-white-10 {
    border-color: rgba(255, 255, 255, 0.1);
}

.bg-black-90 {
    background-color: rgba(0, 0, 0, 0.9);
}

/* =========================================
   9. PREMIUM THEME CLASSES (Added for V6 Audit)
   ========================================= */

/* 9.1 Backgrounds */
.bg-premium-dark {
    background: linear-gradient(135deg, #0A1410 0%, #0D1D15 50%, #0A1410 100%) !important;
    background-attachment: fixed !important;
}

/* 9.2 Premium Cards (Glassmorphism) */
.card-premium {
    background: rgba(13, 29, 21, 0.6) !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    border: 1px solid rgba(181, 255, 157, 0.25) !important;
    border-radius: 24px !important;
    padding: 40px !important;
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.5),
        0 2px 8px rgba(181, 255, 157, 0.15),
        inset 0 1px 2px rgba(255, 255, 255, 0.1) !important;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.card-premium:hover {
    transform: translateY(-8px);
    border-color: rgba(181, 255, 157, 0.4) !important;
    box-shadow:
        0 25px 70px rgba(0, 0, 0, 0.6),
        0 4px 12px rgba(181, 255, 157, 0.25),
        inset 0 1px 2px rgba(255, 255, 255, 0.15) !important;
}

.card-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(181, 255, 157, 0.4) 50%, transparent 100%);
    z-index: 1;
}

/* 9.3 Premium Inputs */
.input-premium,
input[type="text"].input-premium,
input[type="email"].input-premium,
input[type="password"].input-premium,
select.input-premium,
textarea.input-premium {
    background: rgba(13, 29, 21, 0.8) !important;
    backdrop-filter: blur(10px) !important;
    -webkit-backdrop-filter: blur(10px) !important;
    border: 1.5px solid rgba(181, 255, 157, 0.2) !important;
    color: #ffffff !important;
    border-radius: 12px !important;
    padding: 14px 18px !important;
    font-size: 15px !important;
    box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.2) !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.input-premium:focus,
input[type="text"].input-premium:focus,
input[type="email"].input-premium:focus,
input[type="password"].input-premium:focus,
select.input-premium:focus,
textarea.input-premium:focus {
    outline: none !important;
    border-color: #B5FF9D !important;
    background: rgba(13, 29, 21, 0.95) !important;
    box-shadow:
        0 0 0 3px rgba(181, 255, 157, 0.2),
        inset 0 2px 8px rgba(0, 0, 0, 0.2) !important;
    transform: translateY(-1px);
}

.input-premium:hover {
    border-color: rgba(181, 255, 157, 0.3) !important;
}

.input-premium::placeholder {
    color: rgba(214, 230, 209, 0.4) !important;
}

/* 9.4 Premium Buttons */
.btn-premium-lime {
    background: linear-gradient(135deg, #B5FF9D 0%, #9BE685 100%) !important;
    color: #0A1410 !important;
    padding: 14px 40px !important;
    font-weight: 700 !important;
    font-size: 15px !important;
    letter-spacing: 0.02em !important;
    border-radius: 12px !important;
    border: none !important;
    box-shadow: 0 6px 25px rgba(181, 255, 157, 0.35) !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    cursor: pointer;
    display: inline-block;
    text-align: center;
}

.btn-premium-lime:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 10px 40px rgba(181, 255, 157, 0.5) !important;
    background: linear-gradient(135deg, #9BE685 0%, #B5FF9D 100%) !important;
}

.btn-premium-lime:active {
    transform: translateY(-1px) !important;
    box-shadow: 0 4px 20px rgba(181, 255, 157, 0.4) !important;
}

/* 9.5 Utilities & Text */
.text-lime-premium {
    color: #B5FF9D !important;
    font-weight: 500 !important;
    transition: all 0.2s ease !important;
}

.text-lime-premium:hover {
    color: #9BE685 !important;
}

.bg-lime-success {
    background: rgba(34, 197, 94, 0.15) !important;
    backdrop-filter: blur(10px) !important;
    border-radius: 12px !important;
}

.bg-red-error {
    background: rgba(239, 68, 68, 0.15) !important;
    backdrop-filter: blur(10px) !important;
    border-radius: 12px !important;
}

/* 9.6 Animation Utilities */
@keyframes premiumFloat {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    25% {
        transform: translate(10px, -10px) scale(1.05);
    }

    50% {
        transform: translate(-10px, 10px) scale(0.95);
    }

    75% {
        transform: translate(10px, 10px) scale(1.02);
    }
}

.animate-float {
    animation: premiumFloat 20s ease-in-out infinite;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 9.7 Premium Badge/Tag */
.tag-premium {
    background: rgba(0, 255, 120, 0.12) !important;
    color: #00ff88 !important;
    padding: 6px 14px !important;
    border-radius: 14px !important;
    border: 1px solid rgba(0, 255, 120, 0.24) !important;
    font-size: 13px !important;
    display: inline-block;
}

/* 9.8 Premium Form Select */
.form-select-premium {
    background: #0a0f0a !important;
    border: 1px solid #1a2d1a !important;
    color: #d7fdd7 !important;
    padding: 12px 16px !important;
    border-radius: 50px !important;
    font-size: 15px !important;
    width: 100%;
    outline: none !important;
    transition: 0.2s ease !important;
    appearance: none;
    /* Custom arrow usually needed, but simple works for now */
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%2300ff88' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1em;
}

.form-select-premium:hover {
    border-color: #00ff88 !important;
    box-shadow: 0 0 6px rgba(0, 255, 136, 0.4) !important;
}

.form-select-premium:focus {
    border-color: #00ff88 !important;
    box-shadow: 0 0 12px rgba(0, 255, 136, 0.6) !important;
}

.emoji-avatar {
    font-size: 64px;
    background: #1a291a;
    width: 110px;
    height: 110px;
    border-radius: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 2px solid rgba(0, 255, 120, 0.25);
}
