/* style.css - COMPLETE MODERN STYLES WITH ICONS - FIXED VERSION */
/* ===== MODERN DESIGN SYSTEM ===== */
:root {
    /* Primary Colors */
    --primary: #3498db;
    --primary-dark: #2980b9;
    --primary-light: rgba(52, 152, 219, 0.1);
    
    /* Category Colors */
    --color-config: #f39c12;
    --color-proxies: #2ecc71;
    --color-wordlists: #e67e22;
    --color-video: #9b59b6;
    --color-general: #3498db;
    
    /* Gradient Colors */
    --gradient-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-success: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
    --gradient-warning: linear-gradient(135deg, #f7971e 0%, #ffd200 100%);
    --gradient-danger: linear-gradient(135deg, #ff416c 0%, #ff4b2b 100%);
    --gradient-purple: linear-gradient(135deg, #9d50bb 0%, #6e48aa 100%);
    
    /* Background Colors */
    --dark: #0f172a;
    --darker: #0a0f1c;
    --dark-light: #1e293b;
    --card-bg: rgba(30, 41, 59, 0.7);
    --card-hover: rgba(30, 41, 59, 0.9);
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    
    /* Text Colors */
    --text: #f1f5f9;
    --text-light: #cbd5e1;
    --text-muted: #94a3b8;
    --text-dark: #64748b;
    
    /* UI Elements */
    --radius: 16px;
    --radius-sm: 8px;
    --radius-lg: 24px;
    --shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 30px 60px rgba(0, 0, 0, 0.4);
    --shadow-sm: 0 8px 30px rgba(0, 0, 0, 0.2);
    --glow: 0 0 30px rgba(52, 152, 219, 0.3);
    --border: 1px solid rgba(255, 255, 255, 0.1);
    --border-light: 1px solid rgba(255, 255, 255, 0.05);
    
    /* Transitions */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.15s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 2rem;
    --space-lg: 3rem;
    --space-xl: 4rem;
}

/* ===== REDUCED MOTION SUPPORT ===== */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* ===== HIGH CONTRAST MODE SUPPORT ===== */
@media (prefers-contrast: high) {
    :root {
        --primary: #0066cc;
        --text: #ffffff;
        --text-light: #f0f0f0;
        --border: 2px solid var(--primary);
    }
    
    .card {
        border: 2px solid var(--primary) !important;
    }
    
    .nav-link.active {
        border: 2px solid white;
    }
}

/* ===== ICON SYSTEM ===== */
.icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.icon-sm {
    width: 24px;
    height: 24px;
    font-size: 14px;
}

.icon-md {
    width: 40px;
    height: 40px;
    font-size: 20px;
    border-radius: 12px;
}

.icon-lg {
    width: 60px;
    height: 60px;
    font-size: 28px;
    border-radius: 16px;
}

.icon-xl {
    width: 80px;
    height: 80px;
    font-size: 36px;
    border-radius: 20px;
}

.icon-gradient {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.icon-outline {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

.icon-soft {
    background: rgba(52, 152, 219, 0.1);
    color: var(--primary);
}

.icon-hover:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: var(--glow);
}

/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scrollbar-width: thin;
    scrollbar-color: var(--primary) rgba(255, 255, 255, 0.05);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: linear-gradient(135deg, var(--dark) 0%, var(--darker) 100%);
    color: var(--text);
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Focus states for accessibility */
a:focus,
button:focus,
.nav-link:focus,
.action-button:focus,
.category-button:focus,
.telegram-badge:focus,
.cta-button:focus {
    outline: 2px solid var(--primary);
    outline-offset: 3px;
}

button {
    outline: none;
}

button:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 3px;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--space-md);
    width: 100%;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--space-sm);
}

h1, .hero-title, .text-gradient, .stat-number {
    display: inline-block;
}

h1 {
    font-size: clamp(2.25rem, 5vw, 3.5rem);
    background: linear-gradient(135deg, var(--text) 0%, var(--primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

h2 {
    font-size: clamp(1.875rem, 4vw, 2.5rem);
}

h3 {
    font-size: clamp(1.5rem, 3vw, 1.75rem);
}

p {
    margin-bottom: var(--space-sm);
    color: var(--text-light);
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

/* ===== HEADER ===== */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: var(--border);
    box-shadow: var(--shadow-sm);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-sm) 0;
    gap: var(--space-md);
}

.logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--text);
    transition: var(--transition);
}

.logo:hover {
    transform: translateY(-2px);
}

.logo-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.logo-subtitle {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 500;
    margin-top: 2px;
    letter-spacing: 0.5px;
}

/* ===== NAVIGATION ===== */
.main-nav {
    display: flex;
    gap: var(--space-xs);
    flex-wrap: wrap;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0.75rem 1.25rem;
    border-radius: var(--radius);
    font-weight: 500;
    color: var(--text-light);
    transition: var(--transition);
    white-space: nowrap;
    will-change: transform;
}

.nav-link i {
    font-size: 1.1em;
    width: 20px;
    text-align: center;
}

.nav-link:hover {
    background: var(--primary-light);
    color: var(--primary);
    transform: translateY(-2px);
}

.nav-link.active {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

/* ===== HERO SECTION ===== */
.hero-section {
    padding: var(--space-xl) 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    right: -50%;
    bottom: -50%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(102, 126, 234, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(155, 89, 182, 0.15) 0%, transparent 50%);
    z-index: -1;
    animation: float 20s infinite linear;
}

.hero-title {
    font-size: clamp(2.25rem, 5vw, 3.5rem);
    margin-bottom: var(--space-md);
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: clamp(1.125rem, 2vw, 1.25rem);
    max-width: 800px;
    margin: 0 auto var(--space-lg);
    color: var(--text-light);
    opacity: 0.9;
}

.hero-icons {
    display: flex;
    justify-content: center;
    gap: var(--space-lg);
    margin-top: var(--space-xl);
    flex-wrap: wrap;
}

.hero-icon-item {
    text-align: center;
}

.hero-icon {
    margin-bottom: var(--space-sm);
}

.hero-icon-text {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 500;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--gradient-primary);
    color: white;
    padding: 1.25rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.125rem;
    box-shadow: 0 15px 35px rgba(102, 126, 234, 0.3);
    transition: var(--transition);
    border: none;
    cursor: pointer;
    margin-top: var(--space-md);
    will-change: transform;
}

.cta-button i {
    font-size: 1.2em;
}

.cta-button:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 25px 50px rgba(102, 126, 234, 0.4);
}

/* ===== STATS BAR ===== */
.stats-bar {
    display: flex;
    justify-content: center;
    gap: var(--space-xl);
    flex-wrap: wrap;
    margin-top: var(--space-lg);
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 800;
    background: var(--gradient-success);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    line-height: 1;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-top: 4px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ===== CONTENT SECTIONS ===== */
.content-section {
    padding: var(--space-xl) 0;
}

.section-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    margin-bottom: var(--space-lg);
    padding-bottom: var(--space-sm);
    position: relative;
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.section-title i {
    color: var(--primary);
    font-size: 1.2em;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

/* ===== CARD GRID SYSTEM ===== */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: var(--space-lg);
    padding: var(--space-md) 0;
}

.card {
    background: var(--card-bg);
    border-radius: var(--radius);
    padding: var(--space-lg);
    border: var(--border);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    will-change: transform, box-shadow;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
}

.card:hover {
    transform: translateY(-10px);
    background: var(--card-hover);
    box-shadow: var(--shadow-lg);
    border-color: rgba(255, 255, 255, 0.2);
}

.card:hover::before {
    background: var(--gradient-success);
}

.card-header {
    margin-bottom: var(--space-md);
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
}

.card-icon {
    flex-shrink: 0;
    margin-top: 4px;
}

.card-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: var(--space-sm);
    color: var(--text);
}

.card-description {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ===== TYPE BADGES WITH ICONS ===== */
.type-badges {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-xs);
    margin: var(--space-md) 0;
}

.type-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: rgba(255, 255, 255, 0.08);
    color: var(--text-light);
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.type-badge i {
    font-size: 0.9em;
}

.type-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Category-specific badge colors */
.type-badge.config { 
    background: linear-gradient(135deg, rgba(243, 156, 18, 0.2), rgba(230, 126, 34, 0.1));
    color: #f39c12;
    border-color: rgba(243, 156, 18, 0.3);
}
.type-badge.http-s { 
    background: linear-gradient(135deg, rgba(52, 152, 219, 0.2), rgba(41, 128, 185, 0.1));
    color: #3498db;
    border-color: rgba(52, 152, 219, 0.3);
}
.type-badge.socks5 { 
    background: linear-gradient(135deg, rgba(52, 152, 219, 0.2), rgba(41, 128, 185, 0.1));
    color: #3498db;
    border-color: rgba(52, 152, 219, 0.3);
}
.type-badge.socks4 { 
    background: linear-gradient(135deg, rgba(241, 196, 15, 0.2), rgba(243, 156, 18, 0.1));
    color: #f1c40f;
    border-color: rgba(241, 196, 15, 0.3);
}
.type-badge.password { 
    background: linear-gradient(135deg, rgba(231, 76, 60, 0.2), rgba(192, 57, 43, 0.1));
    color: #e74c3c;
    border-color: rgba(231, 76, 60, 0.3);
}
.type-badge.username { 
    background: linear-gradient(135deg, rgba(52, 152, 219, 0.2), rgba(41, 128, 185, 0.1));
    color: #3498db;
    border-color: rgba(52, 152, 219, 0.3);
}
.type-badge.combo { 
    background: linear-gradient(135deg, rgba(241, 196, 15, 0.2), rgba(243, 156, 18, 0.1));
    color: #f1c40f;
    border-color: rgba(241, 196, 15, 0.3);
}
.type-badge.email-pass { 
    background: linear-gradient(135deg, rgba(155, 89, 182, 0.2), rgba(142, 68, 173, 0.1));
    color: #9b59b6;
    border-color: rgba(155, 89, 182, 0.3);
}
.type-badge.sentry { 
    background: linear-gradient(135deg, rgba(231, 76, 60, 0.2), rgba(192, 57, 43, 0.1));
    color: #e74c3c;
    border-color: rgba(231, 76, 60, 0.3);
}
.type-badge.openbullet { 
    background: linear-gradient(135deg, rgba(46, 204, 113, 0.2), rgba(39, 174, 96, 0.1));
    color: #2ecc71;
    border-color: rgba(46, 204, 113, 0.3);
}
.type-badge.silverbullet { 
    background: linear-gradient(135deg, rgba(155, 89, 182, 0.2), rgba(142, 68, 173, 0.1));
    color: #9b59b6;
    border-color: rgba(155, 89, 182, 0.3);
}
.type-badge.public { 
    background: linear-gradient(135deg, rgba(155, 89, 182, 0.2), rgba(142, 68, 173, 0.1));
    color: #9b59b6;
    border-color: rgba(155, 89, 182, 0.3);
}
.type-badge.private { 
    background: linear-gradient(135deg, rgba(46, 204, 113, 0.2), rgba(39, 174, 96, 0.1));
    color: #2ecc71;
    border-color: rgba(46, 204, 113, 0.3);
}
.type-badge.general { 
    background: linear-gradient(135deg, rgba(52, 152, 219, 0.2), rgba(41, 128, 185, 0.1));
    color: #3498db;
    border-color: rgba(52, 152, 219, 0.3);
}
.type-badge.mixed { 
    background: linear-gradient(135deg, rgba(127, 140, 141, 0.2), rgba(149, 165, 166, 0.1));
    color: #7f8c8d;
    border-color: rgba(127, 140, 141, 0.3);
}

/* ===== CARD ACTIONS ===== */
.card-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: var(--space-md);
    padding-top: var(--space-md);
    border-top: var(--border-light);
}

.action-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 0.875rem 1.75rem;
    background: var(--gradient-primary);
    color: white;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    text-decoration: none;
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.2);
    will-change: transform;
}

.action-button i {
    font-size: 1.1em;
}

.action-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(102, 126, 234, 0.3);
}

.action-button.secondary {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text);
}

.action-button.secondary:hover {
    background: rgba(255, 255, 255, 0.15);
}

.card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-top: var(--space-md);
    padding-top: var(--space-sm);
    border-top: var(--border-light);
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
}

.meta-item i {
    color: var(--primary);
    font-size: 0.9em;
}

/* ===== VIDEO CARD SPECIFIC ===== */
.video-card {
    position: relative;
    overflow: hidden;
}

.video-card .card-image {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, rgba(52, 152, 219, 0.1), rgba(155, 89, 182, 0.1));
    border-radius: var(--radius-sm);
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: var(--space-md);
    position: relative;
    overflow: hidden;
}

.video-card .card-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(52, 152, 219, 0.2), rgba(155, 89, 182, 0.2));
    animation: shimmer 2s infinite;
}

.video-card .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    position: relative;
    z-index: 2;
}

.video-card:hover .card-image img {
    transform: scale(1.05);
}

.video-card .card-image i {
    font-size: 4rem;
    color: white;
    text-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    z-index: 3;
    position: relative;
}

/* ===== CATEGORY FILTER ===== */
.category-filter {
    display: flex;
    gap: var(--space-sm);
    margin: var(--space-lg) 0;
    flex-wrap: wrap;
    justify-content: center;
}

.category-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    color: white;
    background: rgba(255, 255, 255, 0.08);
    border: 2px solid transparent;
    transition: var(--transition);
    text-decoration: none;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    will-change: transform;
}

.category-button i {
    font-size: 1.2em;
}

.category-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    background: rgba(255, 255, 255, 0.12);
}

.category-button.active {
    transform: translateY(-3px) scale(1.05);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.category-button.all { background: var(--gradient-primary); }
.category-button.config { background: var(--gradient-warning); }
.category-button.proxies { background: var(--gradient-success); }
.category-button.wordlists { background: linear-gradient(135deg, #e67e22, #d35400); }
.category-button.video { background: var(--gradient-purple); }

/* ===== DOWNLOAD, VIEW, PLAY BUTTONS ===== */
.download-button, .view-button, .video-play-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    border-radius: var(--radius);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: 1rem;
    will-change: transform;
}

.download-button {
    background: linear-gradient(135deg, #2ecc71, #27ae60);
    color: white;
    box-shadow: 0 8px 20px rgba(46, 204, 113, 0.2);
}

.view-button {
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
    box-shadow: 0 8px 20px rgba(52, 152, 219, 0.2);
}

.video-play-button {
    background: linear-gradient(135deg, #9b59b6, #8e44ad);
    color: white;
    box-shadow: 0 8px 20px rgba(155, 89, 182, 0.2);
}

.download-button:hover, .view-button:hover, .video-play-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.file-size {
    font-size: 0.85em;
    opacity: 0.8;
    margin-left: 5px;
}

/* ===== FEATURES & BENEFITS ===== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-lg);
    margin-top: var(--space-lg);
}

.feature-card {
    background: rgba(255, 255, 255, 0.03);
    padding: var(--space-lg);
    border-radius: var(--radius);
    border: var(--border);
    transition: var(--transition);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
}

.feature-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: var(--shadow);
    border-color: var(--primary);
}

.feature-icon {
    margin-bottom: var(--space-md);
}

.feature-card h3 {
    margin-bottom: var(--space-sm);
    color: var(--text);
}

/* ===== LEGAL NOTICE WITH ICONS ===== */
.legal-notice {
    display: flex;
    gap: 20px;
    background: linear-gradient(135deg, rgba(52, 152, 219, 0.1), rgba(155, 89, 182, 0.1));
    padding: 25px;
    border-radius: var(--radius);
    border-left: 4px solid var(--primary);
    margin: 30px 0;
    align-items: flex-start;
}

.legal-icon {
    flex-shrink: 0;
}

.legal-icon .fa-graduation-cap {
    font-size: 2.5rem;
    color: var(--primary);
    opacity: 0.8;
}

.legal-content {
    flex: 1;
}

.legal-content h4 {
    color: var(--primary);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.legal-content h4 i {
    color: #f39c12;
}

/* ===== EDUCATIONAL NOTICE ===== */
.educational-notice {
    display: flex;
    gap: 20px;
    background: linear-gradient(135deg, rgba(255, 65, 108, 0.1), rgba(255, 75, 43, 0.1));
    padding: 25px;
    border-radius: var(--radius);
    border-left: 4px solid #ff416c;
    margin: 30px 0;
    align-items: flex-start;
}

.notice-icon {
    flex-shrink: 0;
}

.notice-icon .fa-exclamation-triangle {
    font-size: 2.5rem;
    color: #ff416c;
    opacity: 0.8;
}

.notice-content {
    flex: 1;
}

.notice-content h4 {
    color: #ff416c;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* ===== FOOTER ===== */
.site-footer {
    margin-top: var(--space-xl);
    padding: var(--space-xl) 0;
    background: rgba(15, 23, 42, 0.95);
    border-top: 3px solid var(--primary);
    text-align: center;
    position: relative;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
}

.footer-content {
    max-width: 1000px;
    margin: 0 auto;
}

.footer-logo {
    margin-bottom: var(--space-md);
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: var(--space-md);
    margin: var(--space-lg) 0;
    flex-wrap: wrap;
}

.footer-links a {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.footer-links a i {
    font-size: 1.1em;
}

.footer-links a:hover {
    color: var(--primary);
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-2px);
}

.copyright {
    margin-top: var(--space-lg);
    font-size: 0.875rem;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    flex-wrap: wrap;
}

.copyright i {
    opacity: 0.7;
}

/* ===== TELEGRAM BADGE ===== */
.telegram-badge {
    position: fixed;
    top: var(--space-md);
    right: var(--space-md);
    background: linear-gradient(135deg, #0088cc, #006699);
    color: white;
    padding: 0.875rem 1.75rem;
    border-radius: 50px;
    font-weight: 600;
    z-index: 1001;
    box-shadow: 0 10px 30px rgba(0, 136, 204, 0.4);
    display: flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
    text-decoration: none;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.telegram-badge i {
    font-size: 1.3em;
}

.telegram-badge:hover {
    background: linear-gradient(135deg, #006699, #004466);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 20px 40px rgba(0, 136, 204, 0.6);
    border-color: rgba(255, 255, 255, 0.2);
}

/* ===== NOTIFICATIONS ===== */
.notifications-container {
    position: fixed;
    top: 100px;
    right: 20px;
    z-index: 9999;
    max-width: 400px;
}

.notification-alert {
    background: var(--card-bg);
    border-radius: var(--radius);
    padding: 15px;
    margin-bottom: 15px;
    box-shadow: var(--shadow);
    border-left: 4px solid #3498db;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.notification-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.notification-icon {
    font-size: 1.2em;
    margin-right: 8px;
}

.notification-type {
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9em;
}

.notification-time {
    font-size: 0.85em;
    color: var(--text-muted);
}

.notification-dismiss {
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 1.5em;
    cursor: pointer;
    padding: 0 5px;
    transition: var(--transition);
}

.notification-dismiss:hover {
    color: var(--text);
}

.notification-message {
    color: var(--text-light);
    line-height: 1.5;
}

/* ===== ADSENSE CONTAINERS ===== */
.adsense-container {
    margin: var(--space-xl) 0;
    text-align: center;
    background: var(--glass-bg);
    padding: var(--space-lg);
    border-radius: var(--radius);
    border: var(--glass-border);
    position: relative;
    min-height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.adsense-container::before {
    content: 'ADVERTISEMENT';
    position: absolute;
    top: 10px;
    left: 15px;
    font-size: 10px;
    color: var(--text-muted);
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 600;
}

.adsense-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
}

.ad-placeholder {
    color: var(--text-muted);
    font-size: 0.95rem;
    padding: var(--space-md);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
}

.ad-placeholder i {
    font-size: 2rem;
    opacity: 0.3;
}

/* ===== CONTENT LINKS ===== */
.content-link {
    color: var(--primary);
    text-decoration: none;
    padding: 2px 4px;
    border-radius: 4px;
    transition: var(--transition);
}

.content-link:hover {
    background: rgba(52, 152, 219, 0.1);
    text-decoration: underline;
}

.content-link.url {
    color: #3498db;
}

.content-link.telegram {
    color: #0088cc;
}

.content-link.email {
    color: #e74c3c;
}

.content-ip {
    background: rgba(243, 156, 18, 0.1);
    padding: 2px 6px;
    border-radius: 4px;
    font-family: monospace;
    color: #f39c12;
}

/* ===== LIST ITEMS ===== */
.list-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 8px;
    padding: 8px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    transition: var(--transition);
}

.list-item:hover {
    background: rgba(255, 255, 255, 0.05);
}

.list-icon {
    color: var(--primary);
    margin-top: 2px;
}

.list-number {
    font-weight: 600;
    color: var(--primary);
    min-width: 20px;
}

.list-text {
    flex: 1;
}

.text-line {
    padding: 8px 0;
}

/* ===== LOADING SKELETON ===== */
.skeleton {
    background: linear-gradient(90deg, 
        rgba(255, 255, 255, 0.06) 25%, 
        rgba(255, 255, 255, 0.1) 50%, 
        rgba(255, 255, 255, 0.06) 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
    border-radius: var(--radius-sm);
}

.skeleton-text {
    height: 1em;
    margin-bottom: 0.5em;
}

.skeleton-title {
    height: 2em;
    width: 70%;
}

.skeleton-card {
    min-height: 200px;
}

@keyframes loading {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* ===== NO CONTENT ===== */
.no-content {
    text-align: center;
    padding: var(--space-xl);
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius);
    border: 2px dashed rgba(255, 255, 255, 0.1);
    margin: var(--space-xl) 0;
}

.no-content i {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: var(--space-md);
    opacity: 0.5;
}

.no-content h3 {
    color: var(--primary);
    margin-bottom: var(--space-sm);
}

/* ===== ANIMATIONS ===== */
@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

@keyframes shimmer {
    0% { opacity: 0.3; }
    50% { opacity: 0.6; }
    100% { opacity: 0.3; }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.fade-in {
    animation: fadeIn 0.8s ease-out;
}

.pulse {
    animation: pulse 2s infinite;
}

/* ===== PRINT STYLES ===== */
@media print {
    .telegram-badge,
    .category-filter,
    .cta-button,
    .action-button,
    .notification-alert,
    .adsense-container {
        display: none !important;
    }
    
    body {
        background: white !important;
        color: black !important;
        font-size: 12pt !important;
    }
    
    .card {
        box-shadow: none !important;
        border: 1px solid #ddd !important;
        background: white !important;
        color: black !important;
        page-break-inside: avoid;
    }
    
    .card-title,
    .card-description,
    .stat-number,
    .stat-label {
        color: black !important;
    }
    
    .site-footer {
        background: white !important;
        color: black !important;
    }
}

/* ===== UTILITY CLASSES ===== */
.text-center { text-align: center; }
.text-gradient { 
    background: var(--gradient-primary); 
    -webkit-background-clip: text; 
    -webkit-text-fill-color: transparent; 
    background-clip: text;
    display: inline-block;
}

.mt-1 { margin-top: var(--space-xs); }
.mt-2 { margin-top: var(--space-sm); }
.mt-3 { margin-top: var(--space-md); }
.mt-4 { margin-top: var(--space-lg); }
.mt-5 { margin-top: var(--space-xl); }

.mb-1 { margin-bottom: var(--space-xs); }
.mb-2 { margin-bottom: var(--space-sm); }
.mb-3 { margin-bottom: var(--space-md); }
.mb-4 { margin-bottom: var(--space-lg); }
.mb-5 { margin-bottom: var(--space-xl); }

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
}

::-webkit-scrollbar-thumb {
    background: var(--gradient-primary);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #764ba2, #667eea);
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1200px) {
    .container {
        padding: 0 var(--space-md);
    }
    
    .card-grid {
        grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    }
}

@media (max-width: 992px) {
    .stats-bar {
        gap: var(--space-lg);
    }
    
    .category-button {
        padding: 0.875rem 1.5rem;
    }
}

@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        text-align: center;
        gap: var(--space-sm);
    }
    
    .main-nav {
        justify-content: center;
        width: 100%;
        overflow-x: auto;
        padding: var(--space-xs) 0;
    }
    
    .card-grid {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }
    
    .stats-bar {
        gap: var(--space-md);
    }
    
    .telegram-badge {
        position: relative;
        top: auto;
        right: auto;
        margin: var(--space-md) auto;
        display: inline-flex;
        width: fit-content;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .legal-notice,
    .educational-notice {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .notifications-container {
        left: 20px;
        right: 20px;
        max-width: none;
    }
}

@media (max-width: 576px) {
    html {
        font-size: 14px;
    }
    
    .container {
        padding: 0 var(--space-sm);
    }
    
    .cta-button {
        padding: 1rem 1.75rem;
        font-size: 1rem;
    }
    
    .category-filter {
        flex-direction: column;
        align-items: center;
    }
    
    .category-button {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
    
    .footer-links {
        flex-direction: column;
        gap: var(--space-sm);
    }
    
    .action-button,
    .download-button,
    .view-button,
    .video-play-button {
        padding: 0.75rem 1.25rem;
        font-size: 0.9rem;
    }
    
    .icon-xl {
        width: 60px;
        height: 60px;
        font-size: 28px;
    }
    
    .icon-lg {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
}