/* ========================================
   ПОЛНЫЕ ТЕМЫ ДЛЯ ВСЕГО САЙТА
   ======================================== */

/* ТЕМА 1: DARK MODERN (по умолчанию) */
.site-theme-dark-modern {
    --primary: #6c5ce7;
    --primary-dark: #5649c0;
    --secondary: #00cec9;
    --success: #00b894;
    --danger: #d63031;
    --warning: #fdcb6e;
    --dark: #2d3436;
    --light: #f5f6fa;
    --gray: #636e72;
    --bg-dark: #1a1b26;
    --card-bg: #24283b;
    --card-border: #414868;
    --text-light: #e0e0e0;
    --text-gray: #b2bec3;
}

.site-theme-dark-modern body {
    background: var(--bg-dark);
    color: var(--text-light);
}

.site-theme-dark-modern .header {
    background: linear-gradient(135deg, var(--primary) 0%, #9b59b6 100%);
}

.site-theme-dark-modern .package {
    background: linear-gradient(145deg, var(--card-bg) 0%, #2a2f4a 100%);
    border: 1px solid var(--card-border);
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15), inset 0 1px 0 rgba(255,255,255,0.1);
}

/* ТЕМА 2: NEON CYBERPUNK */
.site-theme-neon-cyberpunk {
    --primary: #00ffff;
    --primary-dark: #00cccc;
    --secondary: #ff00ff;
    --success: #39ff14;
    --danger: #ff1744;
    --warning: #ffff00;
    --bg-dark: #0a0a0a;
    --card-bg: #111111;
    --card-border: #00ffff;
    --text-light: #ffffff;
    --text-gray: #cccccc;
}

.site-theme-neon-cyberpunk body {
    background: 
        linear-gradient(45deg, #000000 25%, transparent 25%), 
        linear-gradient(-45deg, #000000 25%, transparent 25%), 
        linear-gradient(45deg, transparent 75%, #000000 75%), 
        linear-gradient(-45deg, transparent 75%, #000000 75%);
    background-size: 60px 60px;
    background-position: 0 0, 0 30px, 30px -30px, -30px 0px;
    background-color: #0a0a0a;
    color: var(--text-light);
    position: relative;
}

.site-theme-neon-cyberpunk body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 25% 25%, rgba(0,255,255,0.1) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(255,0,255,0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
}

.site-theme-neon-cyberpunk .header {
    background: linear-gradient(135deg, #000000 0%, #1a1a2e 50%, #16213e 100%);
    border: 2px solid #00ffff;
    box-shadow: 0 0 20px rgba(0,255,255,0.5), inset 0 0 20px rgba(255,0,255,0.1);
    position: relative;
    overflow: hidden;
}

.site-theme-neon-cyberpunk .header::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0,255,255,0.4), transparent);
    animation: cyber-sweep 3s infinite;
}

.site-theme-neon-cyberpunk .header h1 {
    color: #00ffff;
    text-shadow: 0 0 20px #00ffff, 0 0 40px #00ffff;
    animation: neon-flicker 2s infinite alternate;
    font-family: 'Courier New', monospace;
}

.site-theme-neon-cyberpunk .package {
    background: linear-gradient(145deg, #0a0a0a 0%, #1a1a2e 100%);
    border: 2px solid #00ffff;
    border-radius: 0;
    clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 20px, 100% 100%, 20px 100%, 0 calc(100% - 20px));
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(0,255,255,0.3);
}

.site-theme-neon-cyberpunk .package::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #00ffff, #ff00ff, #ffff00);
    animation: cyber-scan 2s linear infinite;
}

.site-theme-neon-cyberpunk .package:hover {
    border-color: #ff00ff;
    box-shadow: 0 0 30px rgba(255,0,255,0.5);
    transform: translateY(-8px);
}

.site-theme-neon-cyberpunk .package .price {
    color: #00ffff;
    text-shadow: 0 0 20px #00ffff;
    font-family: 'Courier New', monospace;
    font-weight: 900;
}

.site-theme-neon-cyberpunk .btn {
    background: linear-gradient(45deg, #00ffff, #ff00ff);
    border: none;
    color: #000000;
    font-weight: bold;
    font-family: 'Courier New', monospace;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
}

.site-theme-neon-cyberpunk .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: left 0.5s;
}

.site-theme-neon-cyberpunk .btn:hover::before {
    left: 100%;
}

/* ТЕМА 3: LIGHT MINIMALIST */
.site-theme-light-minimal {
    --primary: #6366f1;
    --primary-dark: #4f46e5;
    --secondary: #06b6d4;
    --success: #10b981;
    --danger: #ef4444;
    --warning: #f59e0b;
    --bg-light: #ffffff;
    --card-bg: #f8fafc;
    --card-border: #e2e8f0;
    --text-dark: #1f2937;
    --text-gray: #6b7280;
}

.site-theme-light-minimal body {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    color: var(--text-dark);
}

.site-theme-light-minimal .header {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    color: var(--text-dark);
    border: 1px solid var(--card-border);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.site-theme-light-minimal .header h1 {
    color: var(--primary);
}

.site-theme-light-minimal .package {
    background: #ffffff;
    border: 1px solid var(--card-border);
    border-radius: 16px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: all 0.2s ease;
}

.site-theme-light-minimal .package:hover {
    border-color: var(--primary);
    box-shadow: 0 10px 25px rgba(99, 102, 241, 0.15);
    transform: translateY(-4px);
}

.site-theme-light-minimal .package h3,
.site-theme-light-minimal .package .price {
    color: var(--text-dark);
}

.site-theme-light-minimal .package .price {
    color: var(--primary);
}

.site-theme-light-minimal .package .description,
.site-theme-light-minimal .package .features li {
    color: var(--text-gray);
}

/* ТЕМА 4: GAMING RGB */
.site-theme-gaming-rgb {
    --primary: #ff0099;
    --secondary: #00d4ff;
    --success: #39ff14;
    --bg-dark: #0d1117;
    --card-bg: #161b22;
    --text-light: #ffffff;
    --text-gray: #8b949e;
}

.site-theme-gaming-rgb body {
    background: radial-gradient(circle at center, #0d1117 0%, #000000 100%);
    color: var(--text-light);
    position: relative;
}

.site-theme-gaming-rgb body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 2px,
            rgba(255,0,153,0.03) 2px,
            rgba(255,0,153,0.03) 4px
        ),
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 2px,
            rgba(0,212,255,0.03) 2px,
            rgba(0,212,255,0.03) 4px
        );
    pointer-events: none;
}

.site-theme-gaming-rgb .header {
    background: linear-gradient(135deg, #161b22 0%, #21262d 100%);
    border: 2px solid transparent;
    background-clip: padding-box;
    position: relative;
}

.site-theme-gaming-rgb .header::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, 
        #ff0000, #ff7700, #ffdd00, #00ff00, 
        #0099ff, #6600ff, #ff0099, #ff0000);
    background-size: 800% 800%;
    border-radius: inherit;
    z-index: -1;
    animation: rgb-border 3s linear infinite;
}

.site-theme-gaming-rgb .header h1 {
    background: linear-gradient(45deg, #ff0099, #00d4ff, #39ff14);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: rgb-text 2s ease-in-out infinite alternate;
}

.site-theme-gaming-rgb .package {
    background: linear-gradient(135deg, #0d1117 0%, #161b22 100%);
    border: 2px solid transparent;
    border-radius: 16px;
    position: relative;
    overflow: hidden;
}

.site-theme-gaming-rgb .package::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, 
        #ff0000, #ff7700, #ffdd00, #00ff00, 
        #0099ff, #6600ff, #ff0099, #ff0000);
    background-size: 800% 800%;
    border-radius: inherit;
    z-index: -1;
    opacity: 0;
    animation: rgb-border 3s linear infinite;
    transition: opacity 0.3s ease;
}

.site-theme-gaming-rgb .package:hover::before {
    opacity: 1;
}

.site-theme-gaming-rgb .package:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 30px rgba(255,0,153,0.3);
}

.site-theme-gaming-rgb .package .price {
    background: linear-gradient(45deg, #ff0090, #00d4ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 900;
}

/* ТЕМА 5: GLASSMORPHISM */
.site-theme-glassmorphism {
    --primary: #667eea;
    --secondary: #764ba2;
    --bg-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.site-theme-glassmorphism body {
    background: var(--bg-gradient);
    color: white;
    position: relative;
    min-height: 100vh;
}

.site-theme-glassmorphism body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(255,255,255,0.1) 0%, transparent 70%),
        radial-gradient(circle at 80% 80%, rgba(255,255,255,0.05) 0%, transparent 70%),
        radial-gradient(circle at 40% 60%, rgba(255,255,255,0.08) 0%, transparent 70%);
    pointer-events: none;
}

.site-theme-glassmorphism .header {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.site-theme-glassmorphism .package {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 25px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.site-theme-glassmorphism .package::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(255,255,255,0.1) 0%, 
        transparent 50%, 
        rgba(255,255,255,0.05) 100%);
    border-radius: 25px;
    pointer-events: none;
}

.site-theme-glassmorphism .package:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.site-theme-glassmorphism .package .price {
    background: linear-gradient(135deg, #ffffff 0%, rgba(255,255,255,0.8) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 2px 10px rgba(255, 255, 255, 0.3));
}

/* ТЕМА 6: RETRO WAVE */
.site-theme-retro-wave {
    --primary: #ff00ff;
    --secondary: #00ffff;
    --success: #ffff00;
    --bg-dark: #1a0033;
    --text-light: #ffffff;
}

.site-theme-retro-wave body {
    background: 
        linear-gradient(0deg, #000000 0%, #1a0033 50%, #330066 100%);
    color: var(--text-light);
    position: relative;
}

.site-theme-retro-wave body::before {
    content: '';
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: 
        repeating-linear-gradient(
            90deg,
            transparent 0px,
            rgba(255,0,255,0.1) 1px,
            rgba(255,0,255,0.1) 2px,
            transparent 2px,
            transparent 40px
        ),
        repeating-linear-gradient(
            0deg,
            transparent 0px,
            rgba(0,255,255,0.1) 1px,
            rgba(0,255,255,0.1) 2px,
            transparent 2px,
            transparent 20px
        );
    pointer-events: none;
    animation: retro-grid 20s linear infinite;
}

.site-theme-retro-wave .header {
    background: linear-gradient(135deg, #1a0033 0%, #330066 100%);
    border: 2px solid #ff00ff;
    box-shadow: 0 0 30px rgba(255,0,255,0.5);
    position: relative;
    overflow: hidden;
}

.site-theme-retro-wave .header::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,0,255,0.3), transparent);
    animation: retro-sweep 4s infinite;
}

.site-theme-retro-wave .header h1 {
    background: linear-gradient(45deg, #ff00ff, #00ffff, #ffff00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 20px rgba(255,0,255,0.5);
    font-family: 'Courier New', monospace;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.site-theme-retro-wave .package {
    background: linear-gradient(135deg, rgba(26,0,51,0.8) 0%, rgba(51,0,102,0.8) 100%);
    border: 2px solid #ff00ff;
    border-radius: 20px;
    box-shadow: 
        0 0 20px rgba(255,0,255,0.3),
        inset 0 0 20px rgba(0,255,255,0.1);
    position: relative;
    overflow: hidden;
}

.site-theme-retro-wave .package::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: 
        radial-gradient(circle, rgba(255,0,255,0.1) 0%, transparent 70%),
        radial-gradient(circle, rgba(0,255,255,0.1) 0%, transparent 70%);
    animation: retro-orb 6s ease-in-out infinite alternate;
}

.site-theme-retro-wave .package:hover {
    border-color: #00ffff;
    box-shadow: 
        0 0 30px rgba(0,255,255,0.5),
        inset 0 0 20px rgba(255,0,255,0.2);
    transform: translateY(-10px);
}

.site-theme-retro-wave .package .price {
    background: linear-gradient(45deg, #ff00ff, #00ffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 20px rgba(255,0,255,0.5);
    font-family: 'Courier New', monospace;
    font-weight: 900;
}

/* Анимации */
@keyframes cyber-sweep {
    0% { left: -100%; }
    100% { left: 100%; }
}

@keyframes neon-flicker {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

@keyframes cyber-scan {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

@keyframes rgb-border {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes rgb-text {
    0% { background-position: 0% 50%; }
    100% { background-position: 100% 50%; }
}

@keyframes retro-grid {
    0% { transform: translateY(0); }
    100% { transform: translateY(-20px); }
}

@keyframes retro-sweep {
    0% { left: -100%; }
    100% { left: 100%; }
}

@keyframes retro-orb {
    0% { transform: rotate(0deg) scale(1); }
    100% { transform: rotate(360deg) scale(1.2); }
}

/* Адаптивные стили */
@media (max-width: 768px) {
    [class*="site-theme-"] .package {
        padding: 1.5rem;
    }
    
    [class*="site-theme-"] .package .price {
        font-size: 2rem;
    }
    
    [class*="site-theme-"] .header h1 {
        font-size: 2.2rem;
    }
}

@media (max-width: 480px) {
    [class*="site-theme-"] .package {
        padding: 1.2rem;
    }
    
    [class*="site-theme-"] .package .price {
        font-size: 1.8rem;
    }
    
    [class*="site-theme-"] .header h1 {
        font-size: 1.8rem;
    }
}

/* ТЕМА 7: MINECRAFT STYLE с изображениями */
.site-theme-minecraft-cards {
    --primary: #4CAF50;
    --secondary: #2196F3;
    --success: #8BC34A;
    --bg-dark: #1a1a1a;
    --card-bg: #2d2d2d;
    --text-light: #ffffff;
    --text-gray: #cccccc;
}

.site-theme-minecraft-cards body {
    background: 
        radial-gradient(circle at 25% 25%, rgba(76,175,80,0.1) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(33,150,243,0.1) 0%, transparent 50%),
        linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: var(--text-light);
}

.site-theme-minecraft-cards .package {
    background: linear-gradient(145deg, #2d2d2d 0%, #3a3a3a 100%);
    border: 2px solid #444;
    border-radius: 20px;
    padding: 0;
    overflow: hidden;
    position: relative;
    box-shadow: 
        0 10px 30px rgba(0,0,0,0.5),
        inset 0 1px 0 rgba(255,255,255,0.1);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.site-theme-minecraft-cards .package:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: var(--primary);
    box-shadow: 
        0 20px 40px rgba(76,175,80,0.3),
        inset 0 1px 0 rgba(255,255,255,0.2);
}

.site-theme-minecraft-cards .package::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(45deg, 
        var(--primary) 0%, 
        var(--secondary) 50%, 
        var(--success) 100%);
    opacity: 0.1;
    border-radius: 18px 18px 0 0;
}

.site-theme-minecraft-cards .package-image {
    width: 100%;
    height: 200px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    border-radius: 18px 18px 0 0;
    overflow: hidden;
}

.site-theme-minecraft-cards .package-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: linear-gradient(transparent, rgba(45,45,45,0.9));
}

.site-theme-minecraft-cards .package-content {
    padding: 1.5rem;
    position: relative;
    z-index: 2;
}

.site-theme-minecraft-cards .package h3 {
    color: var(--primary);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.site-theme-minecraft-cards .package .price {
    background: linear-gradient(45deg, var(--primary), var(--success));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 2rem;
    font-weight: 900;
    text-align: center;
    margin: 1rem 0;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}

/* ТЕМА 8: PREMIUM CARDS с анимированными изображениями */
.site-theme-premium-cards {
    --primary: #FFD700;
    --secondary: #FF6B35;
    --success: #00D9FF;
    --bg-dark: #0a0a0a;
    --card-bg: #1a1a1a;
    --text-light: #ffffff;
}

.site-theme-premium-cards body {
    background: 
        radial-gradient(ellipse at top, rgba(255,215,0,0.1) 0%, transparent 60%),
        linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    color: var(--text-light);
}

.site-theme-premium-cards .package {
    background: linear-gradient(145deg, #1a1a1a 0%, #2a2a2a 100%);
    border: 2px solid #333;
    border-radius: 25px;
    padding: 0;
    overflow: hidden;
    position: relative;
    box-shadow: 0 15px 35px rgba(0,0,0,0.3);
    transition: all 0.5s ease;
}

.site-theme-premium-cards .package::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, 
        var(--primary), var(--secondary), var(--success), var(--primary));
    background-size: 300% 300%;
    border-radius: 25px;
    z-index: -1;
    opacity: 0;
    animation: premium-glow 3s ease-in-out infinite;
    transition: opacity 0.3s ease;
}

.site-theme-premium-cards .package:hover::before {
    opacity: 1;
}

.site-theme-premium-cards .package:hover {
    transform: translateY(-15px) rotateX(5deg);
    box-shadow: 0 25px 50px rgba(255,215,0,0.3);
}

.site-theme-premium-cards .package-image {
    width: 100%;
    height: 220px;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

.site-theme-premium-cards .package-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255,255,255,0.4), 
        transparent);
    transition: left 0.8s ease;
}

.site-theme-premium-cards .package:hover .package-image::before {
    left: 100%;
}

.site-theme-premium-cards .package-content {
    padding: 2rem;
    background: linear-gradient(145deg, #1a1a1a 0%, #2a2a2a 100%);
}

.site-theme-premium-cards .package h3 {
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 1.6rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 1rem;
}

.site-theme-premium-cards .package .price {
    background: linear-gradient(45deg, var(--primary), var(--success));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 2.2rem;
    font-weight: 900;
    text-align: center;
    margin: 1.5rem 0;
    text-shadow: 0 0 30px rgba(255,215,0,0.5);
}

/* ТЕМА 9: NEON TECH CARDS */
.site-theme-neon-tech {
    --primary: #00FFFF;
    --secondary: #FF00FF;
    --success: #00FF00;
    --bg-dark: #000011;
    --card-bg: #001122;
}

.site-theme-neon-tech body {
    background: 
        radial-gradient(circle at 20% 20%, rgba(0,255,255,0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255,0,255,0.1) 0%, transparent 50%),
        #000011;
    color: #ffffff;
}

.site-theme-neon-tech .package {
    background: linear-gradient(145deg, #001122 0%, #002244 100%);
    border: 2px solid var(--primary);
    border-radius: 20px;
    padding: 0;
    overflow: hidden;
    position: relative;
    box-shadow: 
        0 0 20px rgba(0,255,255,0.3),
        inset 0 1px 0 rgba(255,255,255,0.1);
    transition: all 0.4s ease;
}

.site-theme-neon-tech .package:hover {
    border-color: var(--secondary);
    box-shadow: 
        0 0 40px rgba(255,0,255,0.5),
        inset 0 1px 0 rgba(255,255,255,0.2);
    transform: translateY(-8px) scale(1.03);
}

.site-theme-neon-tech .package-image {
    width: 100%;
    height: 200px;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

.site-theme-neon-tech .package-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        45deg,
        rgba(0,255,255,0.1) 0%,
        transparent 50%,
        rgba(255,0,255,0.1) 100%
    );
}

.site-theme-neon-tech .package-content {
    padding: 1.5rem;
    background: linear-gradient(145deg, #001122 0%, #002244 100%);
}

.site-theme-neon-tech .package h3 {
    color: var(--primary);
    font-size: 1.5rem;
    font-weight: 700;
    text-align: center;
    text-shadow: 0 0 15px var(--primary);
    margin-bottom: 1rem;
}

.site-theme-neon-tech .package .price {
    color: var(--secondary);
    font-size: 2rem;
    font-weight: 900;
    text-align: center;
    text-shadow: 0 0 20px var(--secondary);
    animation: neon-pulse 2s ease-in-out infinite alternate;
}

/* Анимации */
@keyframes premium-glow {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

@keyframes neon-pulse {
    0% { text-shadow: 0 0 10px currentColor; }
    100% { text-shadow: 0 0 25px currentColor, 0 0 35px currentColor; }
}

/* ======= REALLYWORLD STYLE THEME ======= */
.site-theme-reallyworld {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: #ffffff;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.site-theme-reallyworld .header {
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 50%, #ffa726 100%);
    border: none;
    box-shadow: 0 4px 20px rgba(255, 107, 53, 0.3);
    position: relative;
    overflow: hidden;
}

.site-theme-reallyworld .header::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% { transform: translateX(-100%) translateY(-100%) rotate(30deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(30deg); }
}

.site-theme-reallyworld .header h1 {
    color: #ffffff;
    font-size: 2.8rem;
    font-weight: 900;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    margin-bottom: 0.5rem;
    letter-spacing: 2px;
}

.site-theme-reallyworld .header p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    font-weight: 500;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
}

.site-theme-reallyworld .server-info {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 1rem;
    margin: 1rem 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.site-theme-reallyworld .packages-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    padding: 2rem 0;
}

.site-theme-reallyworld .package {
    background: transparent;
    border: none;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    height: 280px;
}

.site-theme-reallyworld .package:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.site-theme-reallyworld .package-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    top: 0;
    left: 0;
    background-image: var(--package-image, url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 280"><defs><linearGradient id="grad" x1="0%" y1="0%" x2="100%" y2="100%"><stop offset="0%" style="stop-color:%23ff6b35;stop-opacity:1" /><stop offset="100%" style="stop-color:%23ffa726;stop-opacity:1" /></linearGradient></defs><rect width="300" height="280" fill="url(%23grad)"/><circle cx="150" cy="140" r="50" fill="white" opacity="0.9"/><text x="150" y="145" text-anchor="middle" fill="%23333" font-size="16" font-weight="bold">AVATAR</text></svg>'));
}

.site-theme-reallyworld .package-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.4) 70%, rgba(0, 0, 0, 0.7) 100%);
}

.site-theme-reallyworld .package-content {
    display: none;
}

.site-theme-reallyworld .package-title {
    position: absolute;
    bottom: 50px;
    left: 12px;
    right: 60px;
    font-size: 1.1rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    z-index: 3;
    line-height: 1.2;
    display: block !important;
}

.site-theme-reallyworld .package-price {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(255, 107, 53, 0.95);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.95rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    z-index: 3;
    backdrop-filter: blur(10px);
    display: block !important;
}

.site-theme-reallyworld .package-description {
    display: none;
}

.site-theme-reallyworld .package-items {
    display: none;
}

.site-theme-reallyworld .buy-button {
    position: absolute;
    bottom: 12px;
    right: 12px;
    background: rgba(255, 107, 53, 0.95);
    color: white;
    border: none;
    padding: 0;
    border-radius: 50%;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
    display: flex !important;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    z-index: 3;
    backdrop-filter: blur(10px);
    text-decoration: none;
}

.site-theme-reallyworld .buy-button::before {
    content: '🛒';
    font-size: 18px;
}

.site-theme-reallyworld .buy-button:hover {
    transform: scale(1.1);
    background: rgba(255, 140, 66, 0.95);
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.4);
}

.site-theme-reallyworld .buy-button:active {
    transform: scale(1.05);
}

.site-theme-reallyworld .admin-button,
.site-theme-reallyworld .rcon-button {
    background: linear-gradient(135deg, #ff6b35, #ff8c42);
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: white;
    border-radius: 15px;
    padding: 12px 24px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.2);
}

.site-theme-reallyworld .admin-button:hover,
.site-theme-reallyworld .rcon-button:hover {
    background: linear-gradient(135deg, #ff8c42, #ffa726);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.3);
}

.site-theme-reallyworld .footer {
    background: rgba(26, 26, 26, 0.9);
    backdrop-filter: blur(10px);
    border-top: 2px solid #3a3a3a;
    color: #cccccc;
}

.site-theme-reallyworld .section-title {
    color: #ff8c42;
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin: 2rem 0;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.site-theme-reallyworld .status-indicator {
    background: linear-gradient(135deg, #4CAF50, #66BB6A);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 2px 10px rgba(76, 175, 80, 0.3);
}

/* Общие стили для изображений в карточках */
.package-image {
    background-image: var(--package-image, url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 200"><rect width="300" height="200" fill="%23333"/><text x="150" y="100" text-anchor="middle" fill="%23666" font-size="16">No Image</text></svg>'));
}

.package[data-image] .package-image {
    background-image: var(--package-image);
}