/* ==========================================================================
   DESIGN SYSTEM & CONSTANTS
   ========================================================================== */
:root {
    /* Color Palette */
    --bg-darker: #080B11;
    --bg-dark: #0F131D;
    --bg-card: rgba(20, 27, 45, 0.6);
    --border-color: rgba(255, 255, 255, 0.08);
    
    --primary: #8B5CF6; /* Violet */
    --primary-glow: rgba(139, 92, 246, 0.4);
    --accent-cyan: #06B6D4; /* Cyan */
    --accent-pink: #EC4899; /* Pink */
    
    --text-main: #F3F4F6;
    --text-muted: #9CA3AF;
    --text-dark: #4B5563;
    
    --success: #10B981;
    --error: #EF4444;
    
    /* Layout Tokens */
    --radius-lg: 16px;
    --radius-md: 10px;
    --radius-sm: 6px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    -webkit-font-smoothing: antialiased;
}

body {
    background-color: var(--bg-darker);
    color: var(--text-main);
    min-height: 100vh;
    overflow-x: hidden;
    line-height: 1.5;
}

/* Utility Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes pulseGlow {
    0% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.05); opacity: 0.8; }
    100% { transform: scale(1); opacity: 0.5; }
}

.animate-fade-in { animation: fadeIn 0.8s ease forwards; }
.animate-slide-up { animation: slideUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards; }
.delay-1 { animation-delay: 0.15s; }

/* Dynamic Screen Manager */
.screen {
    display: none;
    min-height: 100vh;
    width: 100%;
}

.screen.active {
    display: flex;
    flex-direction: column;
    animation: fadeIn 0.4s ease-out forwards;
}

/* ==========================================================================
   1. ПАНЕЛЬ ГЕНЕРАТОРА (ИНТЕРФЕЙС ПРИЛОЖЕНИЯ)
   ========================================================================== */
#generator-screen {
    position: relative;
    justify-content: center;
    align-items: center;
    padding: 40px 20px;
}

/* Background Neo-Glow Effects */
.glow-bg {
    position: absolute;
    width: 600px;
    height: 600px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(139, 92, 246, 0.12) 0%, rgba(6, 182, 212, 0.05) 50%, rgba(0,0,0,0) 70%);
    z-index: 0;
    pointer-events: none;
    animation: pulseGlow 10s infinite ease-in-out;
}

.container {
    width: 100%;
    max-width: 900px;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* Header */
.main-header {
    text-align: center;
}

.logo {
    font-size: 2.8rem;
    font-weight: 800;
    letter-spacing: -1px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: linear-gradient(135deg, #FFF 30%, var(--primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.logo-icon {
    font-size: 2.5rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent-cyan) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 15px var(--primary-glow));
}

.logo span span {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent-cyan) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-top: 10px;
    font-weight: 300;
}

/* Glassmorphism Cards */
.glass {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.generator-card {
    padding: 40px;
}

/* Form Styles */
.form-group {
    margin-bottom: 35px;
}

.field-label {
    display: block;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-main);
    margin-bottom: 12px;
    letter-spacing: 0.5px;
}

.field-label i {
    color: var(--primary);
    margin-right: 6px;
}

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.input-wrapper input {
    width: 100%;
    padding: 16px 50px 16px 20px;
    font-size: 1.05rem;
    background: rgba(10, 15, 26, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    color: #FFF;
    outline: none;
    transition: var(--transition);
}

.input-wrapper input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(139, 92, 246, 0.25);
    background: rgba(10, 15, 26, 0.95);
}

.clear-btn {
    position: absolute;
    right: 15px;
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    font-size: 1.2rem;
    padding: 5px;
    transition: var(--transition);
}

.clear-btn:hover {
    color: var(--error);
}

/* Themes Grid */
.section-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.section-title i {
    color: var(--accent-cyan);
}

.theme-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    margin-bottom: 35px;
}

.theme-card {
    background: rgba(10, 15, 26, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-md);
    padding: 25px 20px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: var(--transition);
}

.theme-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.theme-card.active {
    background: rgba(139, 92, 246, 0.08);
    border-color: var(--primary);
    box-shadow: 0 0 25px rgba(139, 92, 246, 0.15);
}

.theme-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 4px;
    text-transform: uppercase;
}

.theme-badge.discord { background: #5865F2; color: #FFF; }
.theme-badge.youtube { background: #FF0000; color: #FFF; }
.theme-badge.steam { background: #171a21; color: #66c0f4; border: 1px solid #66c0f4; }
.theme-badge.pets { background: var(--accent-pink); color: #FFF; }
.theme-badge.direct { background: var(--success); color: #FFF; }

.theme-icon-wrapper {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--text-muted);
    transition: var(--transition);
}

.theme-card.active .theme-icon-wrapper {
    background: var(--primary);
    color: #FFF;
    box-shadow: 0 0 15px rgba(139, 92, 246, 0.5);
}

.theme-card h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #FFF;
}

.theme-card p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.4;
}

.theme-check {
    position: absolute;
    bottom: 15px;
    right: 15px;
    font-size: 1.3rem;
    color: var(--primary);
    opacity: 0;
    transform: scale(0.5);
    transition: var(--transition);
}

.theme-card.active .theme-check {
    opacity: 1;
    transform: scale(1);
}

/* Buttons */
.btn {
    padding: 14px 28px;
    font-size: 1rem;
    font-weight: 700;
    border-radius: var(--radius-md);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    outline: none;
    border: none;
    transition: var(--transition);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, #7C3AED 100%);
    color: #FFF;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(139, 92, 246, 0.4);
}

.btn-glow {
    position: relative;
}

.btn-glow::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    border-radius: var(--radius-md);
    box-shadow: 0 0 20px var(--primary);
    opacity: 0;
    transition: var(--transition);
    z-index: -1;
}

.btn-glow:hover::after {
    opacity: 0.6;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-main);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

.btn-text {
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 0.85rem;
    padding: 5px 10px;
}

.btn-text:hover {
    color: var(--error);
}

.action-zone {
    display: flex;
    justify-content: center;
}

/* Result Box */
.result-box {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    animation: fadeIn 0.5s ease;
}

.success-color {
    color: var(--success);
}

.result-link-container {
    background: rgba(10, 15, 26, 0.9);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: var(--radius-md);
    padding: 15px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 15px;
}

.generated-url-text {
    font-family: 'Fira Code', monospace;
    font-size: 1.05rem;
    color: var(--accent-cyan);
    word-break: break-all;
    user-select: all;
    flex: 1;
}

.result-actions {
    display: flex;
    gap: 10px;
}

.result-actions .btn {
    padding: 10px 18px;
    font-size: 0.9rem;
}

.hidden {
    display: none !important;
}

/* Link Format Tabs */
.link-formats-container {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.formats-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 500;
}

.formats-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.btn-format {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    color: var(--text-muted);
    padding: 8px 16px;
    font-size: 0.82rem;
    font-weight: 600;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition);
}

.btn-format:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.15);
    color: var(--text-main);
}

.btn-format.active {
    background: rgba(139, 92, 246, 0.15);
    border-color: var(--primary);
    color: #FFF;
    box-shadow: 0 0 10px rgba(139, 92, 246, 0.2);
}

/* History Styles */
.history-section {
    padding: 30px;
}

.history-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 15px;
}

.history-header h3 {
    font-size: 1.15rem;
    font-weight: 700;
}

.history-header h3 i {
    color: var(--primary);
    margin-right: 6px;
}

.history-table-wrapper {
    overflow-x: auto;
}

.history-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    font-size: 0.9rem;
}

.history-table th {
    padding: 12px 15px;
    color: var(--text-muted);
    font-weight: 600;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.history-table td {
    padding: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.history-table tr:last-child td {
    border-bottom: none;
}

.history-type {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
}

.history-type.nitro { color: #5865F2; }
.history-type.gta6 { color: #FF0000; }
.history-type.steam { color: #66c0f4; }
.history-type.cats { color: var(--accent-pink); }
.history-type.direct { color: var(--success); }

.history-link {
    font-family: 'Fira Code', monospace;
    color: var(--accent-cyan);
    text-decoration: none;
    word-break: break-all;
}

.history-link:hover {
    text-decoration: underline;
}

.history-dest {
    color: var(--text-muted);
    max-width: 250px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.history-clicks {
    font-weight: 600;
    color: #FFF;
    display: flex;
    align-items: center;
    gap: 5px;
}

.history-clicks i {
    color: var(--success);
    font-size: 0.8rem;
}

.empty-row td {
    text-align: center;
    color: var(--text-muted);
    padding: 30px;
    font-style: italic;
}


/* ==========================================================================
   2. ТЕМА: DISCORD NITRO BAIT PAGE
   ========================================================================== */
.nitro-body {
    background-color: #2f3136;
    color: #dcddde;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 20px;
}

.nitro-card {
    background-color: #18191c;
    border-radius: 8px;
    width: 100%;
    max-width: 480px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
    overflow: hidden;
    animation: slideUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.nitro-card-header {
    background: linear-gradient(135deg, #8a2387, #e94057, #f27121);
    height: 110px;
    position: relative;
}

.nitro-logo-badge {
    position: absolute;
    bottom: -15px;
    left: 24px;
    background-color: #5865F2;
    color: #FFF;
    padding: 6px 12px;
    font-weight: 800;
    border-radius: 20px;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    gap: 6px;
}

.nitro-card-content {
    padding: 35px 24px 24px 24px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.nitro-gift-icon {
    display: flex;
    justify-content: center;
    margin-top: 10px;
}

.discord-clyde-img {
    height: 70px;
    width: auto;
    object-fit: contain;
}

.nitro-card-content h2 {
    color: #FFF;
    font-size: 1.45rem;
    font-weight: 700;
    text-align: center;
}

.nitro-gift-details {
    font-size: 0.95rem;
    color: #b9bbbe;
    text-align: center;
    line-height: 1.4;
}

.nitro-gift-details strong {
    color: #FFF;
}

.nitro-gift-box {
    background-color: #2f3136;
    border: 1px solid #202225;
    border-radius: 4px;
    padding: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nitro-gift-box-details {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.nitro-gift-title {
    color: #FFF;
    font-weight: 700;
    font-size: 1.1rem;
}

.nitro-gift-subtitle {
    color: #b9bbbe;
    font-size: 0.85rem;
}

.nitro-gift-box-icon {
    font-size: 2.2rem;
    color: #ff73fa;
}

.btn-nitro-claim {
    background-color: #248046;
    color: #FFF;
    border: none;
    border-radius: 3px;
    padding: 14px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    transition: background-color 0.2s ease;
}

.btn-nitro-claim:hover {
    background-color: #1a6535;
}

.nitro-card-footer {
    padding: 16px 24px;
    background-color: #2f3136;
    border-top: 1px solid #202225;
    font-size: 0.75rem;
    color: #72767d;
    text-align: center;
}


/* ==========================================================================
   3. ТЕМА: YOUTUBE GTA 6 BAIT PAGE
   ========================================================================== */
.yt-body {
    background-color: #0f0f0f;
    color: #f1f1f1;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    padding: 0;
}

.yt-container {
    width: 100%;
    max-width: 800px;
    display: flex;
    flex-direction: column;
}

/* Fake Player */
.yt-player-wrapper {
    width: 100%;
    aspect-ratio: 16/9;
    background-color: #000;
    position: relative;
    cursor: pointer;
}

.yt-player-thumbnail {
    width: 100%;
    height: 100%;
    background-image: url('https://images.unsplash.com/photo-1542751371-adc38448a05e?q=80&w=1200&auto=format&fit=crop'); /* Placeholder image for gaming */
    /* Let's construct a GTA6 themed dark gaming background */
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.8)), url('https://raw.githubusercontent.com/Antigravity/temp/main/gta6_thumb_fake.jpg') center/cover no-repeat;
    /* Fallback to CSS styles in case the image fails to load */
    background-color: #1a0f2b;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
}

.yt-play-overlay {
    width: 75px;
    height: 75px;
    background-color: rgba(0, 0, 0, 0.7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.yt-player-wrapper:hover .yt-play-overlay {
    background-color: rgba(255, 0, 0, 0.95);
    transform: scale(1.1);
}

.yt-play-button {
    font-size: 2.2rem;
    color: #FFF;
    margin-left: 6px; /* align center for triangle */
}

.yt-age-warning {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background-color: rgba(0, 0, 0, 0.85);
    border-left: 4px solid #FF0000;
    padding: 10px 15px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-radius: 4px;
    font-size: 0.85rem;
}

.yt-age-warning i {
    color: #FF0000;
    font-size: 1.2rem;
}

/* Info container */
.yt-info {
    padding: 15px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.yt-title {
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.3;
}

.yt-meta {
    font-size: 0.85rem;
    color: #aaa;
    display: flex;
    gap: 8px;
}

.yt-actions {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 5px;
}

.yt-action-btn {
    background-color: #272727;
    border-radius: 18px;
    padding: 8px 16px;
    font-size: 0.85rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    white-space: nowrap;
}

.yt-action-btn:hover {
    background-color: #3f3f3f;
}

.yt-divider {
    border: none;
    border-top: 1px solid #272727;
    margin: 5px 0;
}

.yt-channel {
    display: flex;
    align-items: center;
    gap: 12px;
}

.yt-channel-avatar {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #f27121, #e94057);
    color: #FFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
}

.yt-channel-details {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.yt-channel-name {
    font-weight: 600;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 4px;
}

.yt-channel-name i {
    color: #aaa;
    font-size: 0.75rem;
}

.yt-channel-subs {
    font-size: 0.75rem;
    color: #aaa;
}

.btn-yt-subscribe {
    background-color: #f1f1f1;
    color: #0f0f0f;
    border: none;
    border-radius: 18px;
    padding: 8px 16px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
}

.btn-yt-subscribe:hover {
    background-color: #d9d9d9;
}

/* Comments */
.yt-comments-preview h3 {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.yt-comment-row {
    display: flex;
    gap: 12px;
    margin-top: 10px;
}

.yt-comment-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: #8b5cf6;
    color: #FFF;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
}

.yt-comment-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.yt-comment-author {
    font-size: 0.8rem;
    font-weight: 600;
    color: #FFF;
}

.yt-comment-author span {
    font-weight: 400;
    color: #aaa;
    margin-left: 6px;
}

.yt-comment-content p {
    font-size: 0.85rem;
    color: #f1f1f1;
    line-height: 1.3;
}


/* ==========================================================================
   4. ТЕМА: STEAM BAIT PAGE
   ========================================================================== */
.steam-body {
    background: radial-gradient(circle at top, #1b2838 0%, #171a21 100%);
    color: #c7d5e0;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
    padding: 0;
}

.steam-header-bar {
    width: 100%;
    padding: 16px 20px;
    background-color: #171a21;
    font-size: 0.85rem;
    font-weight: 700;
    color: #FFF;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 8px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.3);
}

.steam-logo-icon {
    font-size: 1.3rem;
}

.steam-card {
    background-color: rgba(23, 26, 33, 0.8);
    border: 1px solid rgba(84, 165, 212, 0.15);
    border-radius: 4px;
    width: 90%;
    max-width: 500px;
    margin-top: 60px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.5);
    overflow: hidden;
    animation: slideUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.steam-card-header {
    background: linear-gradient(135deg, rgba(84, 165, 212, 0.1) 0%, rgba(0, 0, 0, 0) 100%);
    padding: 24px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.steam-card-header h2 {
    color: #FFF;
    font-size: 1.3rem;
    font-weight: 700;
}

.steam-card-header p {
    font-size: 0.85rem;
    color: #8f98a0;
    margin-top: 6px;
}

.steam-card-content {
    padding: 30px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.steam-key-box {
    background-color: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(84, 165, 212, 0.3);
    border-radius: 4px;
    width: 100%;
    padding: 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

#steam-status-text {
    font-size: 0.8rem;
    color: #66c0f4;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
}

.steam-key-placeholder {
    font-family: 'Fira Code', monospace;
    font-size: 1.4rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 2px;
}

.steam-progress-bar-container {
    width: 100%;
    height: 4px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 2px;
    overflow: hidden;
}

.steam-progress {
    height: 100%;
    width: 0;
    background-color: #66c0f4;
    box-shadow: 0 0 10px rgba(102, 192, 244, 0.8);
    transition: width 0.1s ease;
}

.btn-steam-generate {
    background: linear-gradient(135deg, #a4d007 0%, #536f00 100%);
    color: #FFF;
    border: none;
    border-radius: 2px;
    padding: 14px 28px;
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 12px rgba(83, 111, 0, 0.3);
}

.btn-steam-generate:hover {
    background: linear-gradient(135deg, #bbf00a 0%, #688c00 100%);
    box-shadow: 0 4px 15px rgba(131, 175, 0, 0.5);
    transform: translateY(-1px);
}

.steam-card-info {
    padding: 16px 24px;
    background-color: rgba(0, 0, 0, 0.2);
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.75rem;
    color: #8f98a0;
}

.info-item i {
    color: #66c0f4;
    font-size: 0.9rem;
}


/* ==========================================================================
   5. ТЕМА: CUTE CATS BAIT PAGE
   ========================================================================== */
.cats-body {
    background-color: #fff9f6;
    color: #4a3e3d;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0;
}

.cats-header {
    width: 100%;
    max-width: 800px;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid #ffdcd0;
    margin-bottom: 30px;
}

.cats-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: #e06a55;
    display: flex;
    align-items: center;
    gap: 8px;
}

.cats-motto {
    font-size: 0.85rem;
    color: #9e8e8b;
    font-style: italic;
}

.cats-container {
    width: 90%;
    max-width: 650px;
    margin-bottom: 50px;
}

.cats-article {
    background-color: #FFF;
    border-radius: 12px;
    border: 1px solid #ffdcd0;
    padding: 30px;
    box-shadow: 0 8px 24px rgba(224, 106, 85, 0.05);
    display: flex;
    flex-direction: column;
    gap: 20px;
    animation: slideUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.cats-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: #2b1f1d;
    line-height: 1.3;
}

.cats-meta {
    font-size: 0.8rem;
    color: #9e8e8b;
}

.cats-player-wrapper {
    width: 100%;
    aspect-ratio: 16/9;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.cats-thumbnail {
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0,0,0,0.1), rgba(0,0,0,0.3)), url('https://images.unsplash.com/photo-1514888286974-6c03e2ca1dba?q=80&w=1200&auto=format&fit=crop') center/cover no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.cats-play-overlay {
    font-size: 4rem;
    color: #FFF;
    opacity: 0.9;
    filter: drop-shadow(0 4px 10px rgba(0,0,0,0.3));
    transition: var(--transition);
}

.cats-player-wrapper:hover .cats-play-overlay {
    opacity: 1;
    transform: scale(1.1);
    color: #e06a55;
}

.cats-video-time {
    position: absolute;
    bottom: 12px;
    right: 12px;
    background-color: rgba(0, 0, 0, 0.7);
    color: #FFF;
    padding: 3px 6px;
    border-radius: 3px;
    font-size: 0.75rem;
    font-weight: 600;
}

.cats-text {
    font-size: 1rem;
    color: #5c4e4c;
    line-height: 1.6;
}


/* ==========================================================================
   RESPONSIVE DESIGN ADAPTATIONS
   ========================================================================== */
@media (max-width: 768px) {
    .logo {
        font-size: 2.2rem;
    }
    
    .logo-icon {
        font-size: 2rem;
    }
    
    .generator-card {
        padding: 25px 20px;
    }
    
    .theme-grid {
        grid-template-columns: 1fr;
    }
    
    .result-link-container {
        flex-direction: column;
        align-items: stretch;
    }
    
    .result-actions {
        justify-content: flex-end;
    }
    
    .yt-title {
        font-size: 1.1rem;
    }
    
    .cats-title {
        font-size: 1.4rem;
    }
    
    .cats-article {
        padding: 20px;
    }
}
