:root {
    --accent-pink: #ff2d95;
    --accent-purple: #9d4edd;
    --glass-bg: rgba(15, 15, 20, 0.7);
    --glass-border: rgba(255, 255, 255, 0.08);
}

body {
    font-family: 'Outfit', 'Inter', sans-serif;
    background: radial-gradient(circle at 50% 0%, #1a1025 0%, #09090b 100%);
    color: #f4f4f5;
    overflow-x: hidden;
}

.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.8);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.glass-card:hover {
    border-color: rgba(255, 45, 149, 0.2);
    box-shadow: 0 12px 48px 0 rgba(255, 45, 149, 0.1);
}

.neon-text {
    background: linear-gradient(135deg, var(--accent-pink), var(--accent-purple));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 0 20px rgba(255, 45, 149, 0.3);
}

.btn-premium {
    background: linear-gradient(135deg, rgba(255, 45, 149, 0.1), rgba(157, 78, 221, 0.1));
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-premium::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: 0.5s;
}

.btn-premium:hover::before {
    left: 100%;
}

.btn-premium:hover {
    background: linear-gradient(135deg, var(--accent-pink), var(--accent-purple));
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 45, 149, 0.4);
    border-color: transparent;
}

.btn-random {
    background: linear-gradient(135deg, #059669, #10b981);
    box-shadow: 0 0 15px rgba(16, 185, 129, 0.3);
}

.tab-btn {
    position: relative;
    color: #71717a;
    transition: all 0.3s ease;
}

.tab-btn.tab-active {
    color: #fff;
}

.tab-btn::after {
    content: '';
    position: absolute;
    bottom: 0; left: 50%;
    width: 0; height: 3px;
    background: linear-gradient(90deg, var(--accent-pink), var(--accent-purple));
    transition: all 0.3s ease;
    transform: translateX(-50%);
    border-radius: 3px;
}

.tab-btn.tab-active::after {
    width: 100%;
}

.prompt-textarea {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.05);
    resize: none;
    scrollbar-width: thin;
    scrollbar-color: var(--accent-pink) transparent;
}

.prompt-textarea::-webkit-scrollbar {
    width: 6px;
}

.prompt-textarea::-webkit-scrollbar-thumb {
    background: var(--accent-pink);
    border-radius: 10px;
}

.input-stylish {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
}

.input-stylish:focus {
    border-color: var(--accent-pink);
    background: rgba(255, 255, 255, 0.06);
    box-shadow: 0 0 15px rgba(255, 45, 149, 0.2);
    outline: none;
}

@keyframes floating {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

.float-animation {
    animation: floating 6s ease-in-out infinite;
}

.custom-checkbox {
    appearance: none;
    width: 20px;
    height: 20px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 6px;
    cursor: pointer;
    position: relative;
    transition: all 0.2s;
    flex-shrink: 0;
}

.custom-checkbox:checked {
    background: var(--accent-pink);
    border-color: var(--accent-pink);
    box-shadow: 0 0 10px rgba(255, 45, 149, 0.4);
}

.custom-checkbox:checked::after {
    content: '\f00c';
    font-family: "Phosphor-Fill" !important;
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 12px;
}

option {
    background-color: #1a1025;
    color: #f4f4f5;
}

/* Scrollbar global */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #09090b;
}
::-webkit-scrollbar-thumb {
    background: #27272a;
    border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--accent-pink);
}
