/* Fonts */
@font-face {
    font-family: "Gotham";
    src: url("../fonts/Gotham-Black.woff") format("woff"), url("../fonts/Gotham-Black.woff2") format("woff2");
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Gotham";
    src: url("../fonts/Gotham-Bold.woff") format("woff"), url("../fonts/Gotham-Bold.woff2") format("woff2");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Gotham";
    src: url("../fonts/Gotham-Medium.woff") format("woff"), url("../fonts/Gotham-Medium.woff2") format("woff2");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Основные цвета Skinbro */
    --primary-red: #f64a35;
    --primary-red-dark: #d93b27;
    --primary-red-light: #ff6b57;
    --primary-red-bright: #f75f4c;
    
    --accent-red: #e84631;
    --accent-red-light: #ff7a6b;
    
    --dark-bg: #121212;
    --dark-bg-light: #1e1e1e;
    --dark-bg-lighter: #2a2a2a;
    
    --white: #FFFFFF;
    --light-gray: #F8F9FA;
    --gray: #E5E5E5;
    --text-gray: #6C757D;
    --text-dark: #212529;
    
    /* Акцентные цвета */
    --success: #28A745;
    --info: #17A2B8;
    --warning: #FFC107;
    --danger: #DC3545;
    
    /* Шрифты */
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    
    /* Тени */
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 20px rgba(0,0,0,0.15);
    --shadow-xl: 0 20px 40px rgba(0,0,0,0.2);
    
    /* Переходы */
    --transition: all 0.3s ease;
    --transition-fast: all 0.2s ease;
}

body {
    font-family: var(--font-family);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    background: linear-gradient(135deg, var(--light-gray) 0%, var(--white) 100%);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background: linear-gradient(135deg, var(--dark-bg) 0%, var(--dark-bg-light) 100%);
    box-shadow: var(--shadow-md);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo img {
    height: 40px;
    width: auto;
}

.logo-text {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-red);
    display: none;
}

.nav {
    display: flex;
    gap: 30px;
}

.nav a {
    text-decoration: none;
    color: var(--white);
    font-weight: 500;
    transition: var(--transition-fast);
    position: relative;
}

.nav a:hover {
    color: var(--primary-red);
}

.nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-red);
    transition: var(--transition-fast);
}

.nav a:hover::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-btn span {
    width: 24px;
    height: 2px;
    background: var(--white);
    transition: var(--transition-fast);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #0C0C1B 0%, #161622 50%, #0C0C1B 100%);
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
    isolation: isolate;
    transform: none !important;
    will-change: auto;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    z-index: -1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #FFFFFF;
    isolation: isolate;
}

.hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #f64a35, #ff6b57, #e84631);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-red), var(--primary-red-dark));
    color: var(--white);
    box-shadow: 0 4px 15px rgba(246, 74, 53, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(246, 74, 53, 0.6);
}

.btn-secondary {
    background: transparent;
    color: #FFFFFF;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.6);
}

.btn-special {
    background: linear-gradient(135deg, var(--primary-red), var(--primary-red-dark));
    color: var(--white);
    border: 2px solid var(--primary-red);
    box-shadow: 0 4px 15px rgba(246, 74, 53, 0.3);
}

.btn-special:hover {
    background: linear-gradient(135deg, var(--primary-red-bright), var(--primary-red));
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(246, 74, 53, 0.5);
}

.promo-note {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0.5rem 0;
    font-style: italic;
}

/* В hero секции promo-note должен быть белым */
.promocodes-hero .promo-note {
    color: var(--white);
}

.promo-info {
    margin: 1rem 0;
}

.promo-info p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Для блоков в hero секции текст promo-info должен быть белым */
.promocodes-hero .promo-info p {
    color: var(--white);
}

/* Промокод wrapper в hero секции должен иметь темную тему */
.promocodes-hero .promo-code-wrapper {
    background: rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.promocodes-hero .promo-code-wrapper:hover {
    border-color: var(--primary-red);
}

.promocodes-hero .promo-code-text {
    color: var(--white);
}

.promocodes-hero .promo-label {
    color: rgba(255, 255, 255, 0.9);
}

/* Hero Stats Responsive */
.hero-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 2rem 3rem;
    justify-content: center;
    max-width: 600px;
    margin: 0 auto;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--primary-red);
    font-family: 'Gotham', 'Inter', sans-serif;
    line-height: 1.1;
}

.stat-label {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    margin-top: 0.3rem;
    display: block;
}

.hero-image {
    display: none; /* Will be added later with actual images */
}

/* Hero Promo */
.hero-promo {
    margin: 2rem 0;
    display: flex;
    justify-content: center;
}

.promo-highlight {
    background: linear-gradient(135deg, rgba(221, 201, 22, 0.15), rgba(255, 229, 0, 0.15));
    border: 2px solid rgba(221, 201, 22, 0.4);
    border-radius: 16px;
    padding: 1.5rem 2rem;
    text-align: center;
    max-width: 400px;
    backdrop-filter: blur(10px);
}

.promo-badge {
    display: block;
    background: linear-gradient(135deg, #f64a35, #ff6b57);
    color: #0C0C1B;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: inline-block;
}

.promo-multi-note {
    background: rgba(221, 201, 22, 0.15);
    border: 1px solid rgba(221, 201, 22, 0.4);
    border-radius: 8px;
    padding: 0.4rem 0.8rem;
    margin-bottom: 1rem;
    font-size: 0.8rem;
    color: #f64a35;
    text-align: center;
    font-weight: 500;
}

.promo-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.promo-label {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.promo-text-hero {
    background: linear-gradient(135deg, #f64a35, #ff6b57);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: 'Courier New', monospace;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    user-select: all;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.promo-text-hero:hover {
    background: rgba(255, 255, 255, 0.1);
    -webkit-background-clip: initial;
    -webkit-text-fill-color: #f64a35;
    background-clip: initial;
}

.copy-btn-hero {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
    opacity: 0.8;
    transition: opacity 0.3s ease, transform 0.2s ease;
    padding: 0.2rem;
    outline: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.copy-btn-hero:hover {
    opacity: 1;
    transform: scale(1.1);
}

.copy-btn-hero-full {
    background: linear-gradient(135deg, #f64a35, #ff6b57);
    color: #0C0C1B;
    border: none;
    padding: 0.6rem 1.2rem;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    margin-top: 0.5rem;
    pointer-events: auto;
    z-index: 10;
    position: relative;
}

.copy-btn-hero-full:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(221, 201, 22, 0.4);
}

.copy-btn-full {
    background: linear-gradient(135deg, #f64a35, #ff6b57);
    color: #0C0C1B;
    border: none;
    padding: 0.6rem 1.2rem;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    margin: 0.5rem 0;
    pointer-events: auto;
    z-index: 10;
    position: relative;
}

.copy-btn-full:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(221, 201, 22, 0.4);
}

.copy-btn-full:active,
.copy-btn-hero-full:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(221, 201, 22, 0.3);
}

/* About CTA Button */
.about-cta {
    margin-top: 2rem;
}

.btn-accent {
    background: linear-gradient(135deg, #f64a35, #ff6b57);
    color: #0C0C1B;
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-accent:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(221, 201, 22, 0.4);
}

/* Promo Info Section */
.promo-info {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 2rem;
    margin-top: 3rem;
    text-align: center;
}

.promo-info h3 {
    color: #f64a35;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.promo-info p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.update-note {
    background: rgba(221, 201, 22, 0.1);
    border: 1px solid rgba(221, 201, 22, 0.3);
    border-radius: 8px;
    padding: 1rem;
    margin-top: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
}

.update-note strong {
    color: #f64a35;
}

/* Section Styles */
section {
    padding: 80px 0;
}

h2 {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: #FFFFFF;
}

/* About Section */
.about {
    background: #161622;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text p {
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    line-height: 1.7;
}

.about-features {
    display: grid;
    gap: 2rem;
}

.feature {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease;
}

.feature:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
}

.feature-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.feature h3 {
    color: #FFFFFF;
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.feature p {
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

/* Advantages Section */
.advantages {
    background: linear-gradient(135deg, #0C0C1B 0%, #161622 100%);
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.advantage {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.advantage::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #f64a35, #ff6b57, #e84631);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.advantage:hover::before {
    transform: scaleX(1);
}

.advantage:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.advantage-icon {
    margin-bottom: 1rem;
}

.advantage h3 {
    color: #FFFFFF;
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.advantage p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

/* Section CTA Buttons */
.advantages-cta,
.features-cta {
    text-align: center;
    margin-top: 3rem;
}

.advantages-cta .btn-accent,
.features-cta .btn-accent {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

/* Bonuses Section */
.bonuses {
    background: #171724;
}

.bonuses-subtitle {
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.2rem;
    margin-bottom: 3rem;
}

.bonuses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.bonus-card {
    background: linear-gradient(135deg, rgba(221, 201, 22, 0.1), rgba(255, 229, 0, 0.1));
    padding: 2rem;
    border-radius: 20px;
    border: 2px solid rgba(221, 201, 22, 0.3);
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.bonus-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(221, 201, 22, 0.05), rgba(255, 229, 0, 0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.bonus-card:hover::before {
    opacity: 1;
}

.bonus-card:hover {
    transform: translateY(-10px);
    border-color: rgba(221, 201, 22, 0.6);
    box-shadow: 0 15px 40px rgba(221, 201, 22, 0.2);
}

.bonus-card.special {
    background: linear-gradient(135deg, rgba(116, 11, 205, 0.1), rgba(209, 28, 238, 0.1));
    border-color: rgba(116, 11, 205, 0.4);
}

.bonus-card.special:hover {
    border-color: rgba(116, 11, 205, 0.7);
    box-shadow: 0 15px 40px rgba(116, 11, 205, 0.2);
}

.bonus-badge {
    position: absolute;
    top: -1px;
    right: 20px;
    background: linear-gradient(135deg, #f64a35, #ff6b57);
    color: #0C0C1B;
    padding: 0.5rem 1rem;
    border-radius: 0 0 8px 8px;
    font-size: 0.875rem;
    font-weight: 600;
}

.bonus-badge.special {
    background: linear-gradient(135deg, #741BCD, #D11CEE);
    color: #FFFFFF;
}

.bonus-icon {
    font-size: 3rem;
    margin: 1rem 0;
}

.bonus-card h3 {
    color: #FFFFFF;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.bonus-card p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.promo-code {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    padding: 1rem;
    margin: 1.5rem 0 0.5rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    overflow: hidden;
}

.promo-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
}

.promo-text {
    background: linear-gradient(135deg, #f64a35, #ff6b57);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: 'Courier New', monospace;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    user-select: all;
    white-space: nowrap;
}

.copy-btn {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.2rem;
    opacity: 0.7;
    transition: opacity 0.3s ease, transform 0.2s ease;
    padding: 0.2rem;
    outline: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.copy-btn:hover {
    opacity: 1;
    transform: scale(1.1);
}

.bonus-info {
    margin: 1.5rem 0;
}

.auto-bonus {
    background: rgba(178, 255, 0, 0.2);
    color: #B2FF00;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-size: 0.875rem;
    font-weight: 600;
}

.btn-bonus {
    background: linear-gradient(135deg, #f64a35, #ff6b57);
    color: #0C0C1B;
    width: 100%;
    margin-top: auto;
}

.btn-special {
    background: linear-gradient(135deg, #741BCD, #D11CEE);
    color: #FFFFFF;
    width: 100%;
    margin-top: auto;
}

/* CTA Section - приглушенный фон */
.cta {
    background: linear-gradient(135deg, #161622 0%, #0C0C1B 100%);
    text-align: center;
    color: #FFFFFF;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.cta-content h2 {
    margin-bottom: 1rem;
    color: #FFFFFF;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.8;
    color: rgba(255, 255, 255, 0.8);
}

.btn-cta {
    background: linear-gradient(135deg, #f64a35, #ff6b57);
    color: #0C0C1B;
    font-size: 1.1rem;
    padding: 1rem 2rem;
    font-weight: 700;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(221, 201, 22, 0.3);
}

/* Footer */
.footer {
    background: #0C0C1B;
    padding: 3rem 0 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-info .logo {
    margin-bottom: 1rem;
}

.footer-info p {
    color: rgba(255, 255, 255, 0.7);
}

.footer-links {
    display: flex;
    gap: 3rem;
}

.footer-column h4 {
    color: #FFFFFF;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-column a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    display: block;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: #f64a35;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.disclaimer {
    font-size: 0.75rem !important;
    opacity: 0.7;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav {
        display: none;
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(4, 1fr);
        gap: 1.5rem;
        max-width: 300px;
    }
    
    .stat-number {
        font-size: 1.8rem !important;
    }
    
    .stat-label {
        font-size: 0.85rem !important;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .advantages-grid {
        grid-template-columns: 1fr;
    }
    
    .bonuses-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .promo-code {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
    }
    
    .promo-highlight {
        padding: 1rem 1.5rem;
        max-width: 100%;
    }
    
    .promo-content {
        flex-direction: column;
        gap: 0.8rem;
    }
    
    .promo-info {
        padding: 1.5rem;
    }
    
    .copy-btn-hero-full,
    .copy-btn-full {
        font-size: 0.85rem;
        padding: 0.5rem 1rem;
    }
    
    .promo-multi-note {
        font-size: 0.75rem;
        padding: 0.3rem 0.6rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .bonus-card {
        padding: 1.5rem;
    }
    
    .advantage {
        padding: 1.5rem;
    }
    
    .stat-number {
        font-size: 1.6rem !important;
    }
}

/* Animations */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.bonus-card,
.advantage,
.feature {
    animation: slideInUp 0.6s ease-out;
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #1a1a1a;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #f64a35, #ff6b57);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #ff6b57, #f64a35);
}

/* Payment Icons */
.payment-icons {
    display: flex;
    gap: 8px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.payment-icon {
    width: 32px;
    height: auto;
    max-height: 24px;
    object-fit: contain;
}

/* Увеличенные 2-я и 3-я платежные иконки */
.payment-icon[src*="logo-master-card"],
.payment-icon[src*="logo-skinpay"] {
    width: 40px;
    max-height: 32px;
}

.advantage.payment-methods .advantage-icon {
    height: auto;
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Provably Fair Section */
.provably-fair {
    background: linear-gradient(135deg, #161622 0%, #0C0C1B 100%);
}

.provably-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.provably-text {
    font-size: 1.1rem;
    line-height: 1.7;
}

.provably-text p {
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
}

.provably-text strong {
    color: #f64a35;
    font-weight: 700;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(221, 201, 22, 0.3);
}

.feature-card .feature-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    color: #FFFFFF;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.feature-card p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin: 0;
}

/* Features Section */
.features {
    background: #171724;
}

.features-grid-large {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.feature-large {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-large::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #f64a35, #ff6b57, #e84631);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.feature-large:hover::before {
    transform: scaleX(1);
}

.feature-large:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.feature-large .feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-large h3 {
    color: #FFFFFF;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.feature-large p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .provably-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid-large {
        grid-template-columns: 1fr;
    }
}

/* Multi-use note */
.multi-use-note {
    background: rgba(221, 201, 22, 0.1);
    border: 1px solid rgba(221, 201, 22, 0.3);
    border-radius: 6px;
    padding: 0.5rem;
    margin: 1rem 0;
    font-size: 0.875rem;
    color: #f64a35;
    text-align: center;
    font-weight: 500;
}

/* Promo Instructions */
.promo-instructions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.instruction-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.instruction-icon {
    font-size: 2rem;
    min-width: 50px;
    text-align: center;
    line-height: 1;
}

.instruction-content h4 {
    color: #f64a35;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.instruction-content p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
    margin: 0;
}

@media (max-width: 768px) {
    .instruction-item {
        flex-direction: column;
        text-align: center;
        gap: 0.8rem;
    }
    
    .instruction-icon {
        min-width: auto;
    }
}

/* ===============================
   SKINBRO Промокоды - Стили
   =============================== */

/* === БАЗОВЫЕ СТИЛИ === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-family);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    background: linear-gradient(135deg, var(--light-gray) 0%, var(--white) 100%);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* === HEADER === */


/* === HERO SECTION === */
.promocodes-hero {
    background: linear-gradient(135deg, var(--dark-bg) 0%, var(--dark-bg-light) 100%);
    color: var(--white);
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.promocodes-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, var(--primary-red-dark) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, var(--accent-red) 0%, transparent 50%);
    opacity: 0.1;
    pointer-events: none;
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.promocodes-hero h1 {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 20px;
    color: var(--white);
    line-height: 1.2;
}

.promocodes-hero h1 .fire-emoji {
    color: #ff4500 !important;
    filter: none !important;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* === ТОП ПРОМОКОДЫ В HERO === */
.top-promocodes {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin: 50px 0 40px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.promocode-highlight {
    background: linear-gradient(135deg, var(--white) 0%, var(--light-gray) 100%);
    border-radius: 20px;
    padding: 30px;
    box-shadow: var(--shadow-xl);
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    border: 3px solid var(--primary-red);
}

/* Блоки в hero секции имеют темный фон */
.promocodes-hero .promocode-highlight {
    background: linear-gradient(135deg, rgba(18, 18, 18, 0.9) 0%, rgba(30, 30, 30, 0.9) 100%);
    border: 2px solid var(--primary-red);
    backdrop-filter: blur(10px);
}

.promocode-highlight:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.3);
}

.promocode-highlight.secondary {
    border-color: var(--accent-red);
}

.promo-badge {
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--accent-red) 100%);
    color: var(--white);
    font-size: 0.875rem;
    font-weight: 700;
    padding: 8px 16px;
    border-radius: 20px;
    display: inline-block;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.promocode-highlight h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-bg);
    margin-bottom: 15px;
}

/* Для блоков в hero секции заголовки должны быть белыми */
.promocodes-hero .promocode-highlight h3 {
    color: var(--white);
}

.promo-code-main {
    margin: 20px 0;
}

.promo-label {
    font-size: 0.875rem;
    color: var(--text-gray);
    font-weight: 500;
    display: block;
    margin-bottom: 8px;
}

.promo-code-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--light-gray);
    border: 2px solid var(--gray);
    border-radius: 12px;
    padding: 12px 16px;
    transition: var(--transition-fast);
}

.promo-code-wrapper:hover {
    border-color: var(--primary-red);
    box-shadow: var(--shadow-sm);
}

.promo-code-text {
    font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', monospace;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-red-dark);
    background: none;
    border: none;
    flex: 1;
    letter-spacing: 1px;
}

.copy-btn {
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--accent-red) 100%);
    color: var(--white);
    border: none;
    padding: 8px 16px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.875rem;
    cursor: pointer;
    transition: var(--transition-fast);
    display: flex;
    align-items: center;
    gap: 6px;
}

.copy-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.promo-features {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin: 15px 0;
}

.feature {
    background: rgba(246, 74, 53, 0.15);
    color: var(--dark-bg);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 12px;
    border: 1px solid var(--primary-red);
    transition: all 0.3s ease;
}

.feature:hover {
    background: var(--primary-red);
    color: var(--white);
}

/* Features в hero секции должны быть белыми */
.promocodes-hero .feature {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.promocodes-hero .feature:hover {
    background: var(--primary-red);
    color: var(--white);
    border-color: var(--primary-red);
}

/* === КНОПКИ === */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    gap: 8px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--accent-red) 100%);
    color: var(--white);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: linear-gradient(135deg, var(--dark-bg) 0%, var(--dark-bg-light) 100%);
    color: var(--white);
    border: 2px solid var(--primary-red);
}

.btn-secondary:hover {
    background: var(--primary-red);
    color: var(--white);
}

/* === СТАТИСТИКА В HERO === */
.hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 50px;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary-red);
    line-height: 1;
}

.stat-label {
    color: rgba(255,255,255,0.8);
    font-size: 0.875rem;
    font-weight: 500;
    margin-top: 5px;
}

/* === ВСЕ ПРОМОКОДЫ СЕКЦИЯ === */
.all-promocodes {
    padding: 80px 0;
    background: var(--white);
}

.all-promocodes h2 {
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 20px;
    color: var(--dark-bg);
}

.section-subtitle {
    text-align: center;
    font-size: 1.125rem;
    color: var(--text-gray);
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.promocodes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.promocode-card {
    background: var(--white);
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    overflow: hidden;
    transition: var(--transition);
    border: 2px solid var(--gray);
    display: flex;
    flex-direction: column;
}

.promocode-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.promocode-card.featured {
    border-color: var(--primary-red);
    position: relative;
}

.promocode-card.featured::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-red) 0%, var(--accent-red) 100%);
}

.promocode-card.special {
    border-color: var(--info);
}

.card-header {
    padding: 25px;
    border-bottom: 1px solid var(--gray);
}

.promo-badge.top {
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--accent-red) 100%);
    margin-bottom: 15px;
}

.promo-badge.special {
    background: linear-gradient(135deg, var(--info) 0%, #20A4C7 100%);
    color: var(--white);
}

.card-header h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.card-header p {
    color: var(--text-gray);
    line-height: 1.5;
}

.promo-details {
    padding: 25px;
    flex: 1;
}

.promo-value {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-red-dark);
    text-align: center;
    margin-bottom: 20px;
}

.promo-code-section {
    margin-bottom: 20px;
}

.card-footer {
    padding: 0 25px 25px;
}

.btn-card-primary {
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--accent-red) 100%);
    color: var(--dark-bg);
    width: 100%;
}

.btn-card-secondary {
    background: linear-gradient(135deg, var(--dark-bg) 0%, var(--dark-bg-light) 100%);
    color: var(--white);
    width: 100%;
}

.btn-card-special {
    background: linear-gradient(135deg, var(--info) 0%, #20A4C7 100%);
    color: var(--white);
    width: 100%;
}

.auto-activation {
    text-align: center;
    margin: 20px 0;
}

.auto-badge {
    background: var(--success);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

/* === ИНФОРМАЦИЯ ОБ ОБНОВЛЕНИЯХ === */
.update-info {
    background: linear-gradient(135deg, var(--primary-red-light) 0%, var(--primary-red-bright) 100%);
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    margin-top: 50px;
}

.update-info h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-bg);
    margin-bottom: 15px;
}

.update-info p {
    color: var(--text-dark);
    margin-bottom: 15px;
}

.last-update {
    font-size: 0.875rem;
    color: var(--text-gray);
    font-weight: 500;
}

/* === КАК ИСПОЛЬЗОВАТЬ === */
.how-to-use {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--light-gray) 0%, var(--white) 100%);
}

.how-to-use h2 {
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 20px;
    color: var(--dark-bg);
}

.instructions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.instruction-card {
    background: var(--white);
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    position: relative;
}

.instruction-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.instruction-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--accent-red) 100%);
    color: var(--dark-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    margin: 0 auto 20px;
}

.instruction-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.instruction-content p {
    color: var(--text-gray);
    line-height: 1.6;
}

.instruction-types {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.instruction-type {
    background: var(--white);
    border-radius: 16px;
    padding: 30px;
    box-shadow: var(--shadow-md);
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.type-icon {
    font-size: 2rem;
    min-width: 60px;
}

.type-content h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.type-content p {
    color: var(--text-gray);
    line-height: 1.6;
}

/* === О SKINBRO === */
.about-skinbro {
    padding: 80px 0;
    background: var(--white);
}

.about-skinbro h2 {
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 50px;
    color: var(--dark-bg);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
    margin-bottom: 50px;
}

.about-text p {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--text-gray);
    margin-bottom: 20px;
}

.about-text strong {
    color: var(--text-dark);
    font-weight: 700;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.feature-item {
    background: linear-gradient(135deg, var(--light-gray) 0%, var(--white) 100%);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    transition: var(--transition);
}

.feature-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.feature-icon {
    font-size: 2rem;
    margin-bottom: 10px;
}

.feature-item h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.feature-item p {
    font-size: 0.875rem;
    color: var(--text-gray);
}

.about-cta {
    background: linear-gradient(135deg, var(--dark-bg) 0%, var(--dark-bg-light) 100%);
    border-radius: 16px;
    padding: 40px;
    text-align: center;
    color: var(--white);
}

.about-cta h3 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--primary-red);
}

.about-cta p {
    font-size: 1.125rem;
    margin-bottom: 20px;
    color: rgba(255,255,255,0.9);
}

.benefits-list {
    list-style: none;
    text-align: left;
    max-width: 400px;
    margin: 0 auto 30px;
}

.benefits-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
    color: rgba(255,255,255,0.9);
}

.benefits-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-red);
    font-weight: bold;
}

.btn-cta {
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--accent-red) 100%);
    color: var(--dark-bg);
    font-size: 1.125rem;
    padding: 16px 32px;
}

/* === FAQ === */
.faq-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--light-gray) 0%, var(--white) 100%);
}

.faq-section h2 {
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 50px;
    color: var(--dark-bg);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.faq-item {
    background: var(--white);
    border-radius: 16px;
    padding: 30px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.faq-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.faq-item h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.faq-item p {
    color: var(--text-gray);
    line-height: 1.6;
}

/* === SEO CONTENT === */
.seo-content {
    padding: 80px 0;
    background: var(--white);
}

.seo-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 50px;
    color: var(--dark-bg);
}

.seo-text {
    max-width: 800px;
    margin: 0 auto;
}

.seo-text p {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--text-gray);
    margin-bottom: 25px;
}

.seo-text strong {
    color: var(--text-dark);
    font-weight: 700;
}

.seo-text h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 35px 0 20px;
}

.seo-text ul {
    margin-bottom: 25px;
    padding-left: 20px;
}

.seo-text li {
    margin-bottom: 10px;
    color: var(--text-gray);
    line-height: 1.6;
}

/* === FOOTER === */
.footer {
    background: linear-gradient(135deg, var(--dark-bg) 0%, var(--dark-bg-light) 100%);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-bottom: 40px;
}

.footer-brand {
    max-width: 400px;
}

.footer-brand .logo {
    margin-bottom: 20px;
}

.footer-brand .logo-text {
    display: inline;
    color: var(--primary-red);
}

.footer-brand p {
    color: rgba(255,255,255,0.8);
    line-height: 1.6;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.footer-column h4 {
    color: var(--primary-red);
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 1.125rem;
}

.footer-column a {
    display: block;
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    margin-bottom: 8px;
    transition: var(--transition-fast);
}

.footer-column a:hover {
    color: var(--primary-red);
}

.footer-bottom {
    border-top: 1px solid var(--dark-bg-lighter);
    padding-top: 20px;
    text-align: center;
}

.footer-copyright p,
.footer-disclaimer p {
    color: rgba(255,255,255,0.6);
    font-size: 0.875rem;
    margin-bottom: 5px;
}

/* === УВЕДОМЛЕНИЕ О КОПИРОВАНИИ === */
.copy-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: var(--success);
    color: var(--white);
    border-radius: 12px;
    padding: 16px 20px;
    box-shadow: var(--shadow-lg);
    transform: translateX(400px);
    transition: var(--transition);
    z-index: 10000;
}

.copy-notification.show {
    transform: translateX(0);
}

.notification-content {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
}

/* === МОБИЛЬНОЕ МЕНЮ === */
@media (max-width: 768px) {
    .nav {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--white);
        box-shadow: var(--shadow-lg);
        padding: 20px;
        flex-direction: column;
        gap: 15px;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: var(--transition);
        z-index: 999;
    }
    
    .nav.mobile-active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .mobile-menu-btn.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }
    
    .mobile-menu-btn.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-btn.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }
}

/* === АДАПТИВНОСТЬ === */
@media (max-width: 768px) {
    .logo-text {
        display: none;
    }
    
    .promocodes-hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.125rem;
    }
    
    .top-promocodes {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .hero-stats {
        gap: 30px;
        flex-wrap: wrap;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .promocodes-grid {
        grid-template-columns: 1fr;
    }
    
    .instructions-grid {
        grid-template-columns: 1fr;
    }
    
    .instruction-types {
        grid-template-columns: 1fr;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .feature-grid {
        grid-template-columns: 1fr;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-main {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .promo-code-wrapper {
        flex-direction: column;
        gap: 10px;
    }
    
    .copy-btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .promocodes-hero h1 {
        font-size: 2rem;
    }
    
    .promocode-highlight {
        padding: 20px;
    }
    
    .hero-stats {
        gap: 20px;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .all-promocodes h2,
    .how-to-use h2,
    .about-SKINBRO h2,
    .faq-section h2,
    .seo-content h2 {
        font-size: 2rem;
    }
}

/* === АНИМАЦИИ === */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.promocode-highlight.featured {
    animation: pulse 3s infinite;
}

/* === УЛУЧШЕНИЯ ДОСТУПНОСТИ === */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

.copy-btn:focus,
.btn:focus {
    outline: 3px solid var(--primary-red);
    outline-offset: 2px;
}

/* === МОДАЛЬНОЕ ОКНО MAGICDROP === */
.magicdrop-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10001;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    padding: 20px;
}

.magicdrop-modal.show {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: linear-gradient(135deg, var(--white) 0%, var(--light-gray) 100%);
    border-radius: 20px;
    padding: 40px;
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
    transform: scale(0.8);
    transition: transform 0.3s ease;
    border: 3px solid #ff6b35;
}

.magicdrop-modal.show .modal-content {
    transform: scale(1);
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--text-gray);
    cursor: pointer;
    transition: var(--transition-fast);
    z-index: 10;
}

.modal-close:hover {
    color: var(--primary-red);
    transform: scale(1.1);
}

.modal-header {
    text-align: center;
    margin-bottom: 30px;
}

.modal-logo {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.5rem;
    padding: 8px;
}

.modal-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.modal-title {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--dark-bg);
    margin-bottom: 10px;
    line-height: 1.2;
}

.modal-subtitle {
    color: var(--text-gray);
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.special-offer-badge {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.context-info {
    background: rgba(255, 107, 53, 0.1);
    border: 1px solid rgba(255, 107, 53, 0.3);
    border-radius: 12px;
    padding: 15px;
    margin-top: 15px;
    text-align: center;
}

.context-text {
    color: var(--dark-bg);
    font-weight: 600;
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.4;
}

.promocodes-section {
    margin-bottom: 30px;
}

.promo-item {
    background: var(--white);
    border: 2px solid var(--gray);
    border-radius: 16px;
    padding: 25px;
    margin-bottom: 20px;
    transition: var(--transition);
    position: relative;
}

.promo-item:hover {
    border-color: #ff6b35;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.promo-item.featured {
    border-color: #ff6b35;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(247, 147, 30, 0.1));
}

.promo-item.featured::before {
    content: '⭐ ЛУЧШЕЕ ПРЕДЛОЖЕНИЕ';
    position: absolute;
    top: -12px;
    left: 20px;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: var(--white);
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 700;
}

.promo-item h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--dark-bg);
    margin-bottom: 10px;
}

.promo-item p {
    color: var(--text-gray);
    margin-bottom: 15px;
    line-height: 1.5;
}

.promo-code-display {
    background: var(--light-gray);
    border: 2px solid var(--gray);
    border-radius: 12px;
    padding: 12px 16px;
    margin: 15px 0;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition-fast);
}

.promo-code-display:hover {
    border-color: #ff6b35;
}

.promo-code-value {
    font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', monospace;
    font-size: 1.1rem;
    font-weight: 700;
    color: #ff6b35;
    flex: 1;
    letter-spacing: 1px;
}

.copy-promo-btn {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: var(--white);
    border: none;
    padding: 8px 16px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.875rem;
    cursor: pointer;
    transition: var(--transition-fast);
    display: flex;
    align-items: center;
    gap: 6px;
}

.copy-promo-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.promo-link {
    color: #ff6b35;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
}

.promo-link:hover {
    text-decoration: underline;
}

.bonus-info {
    background: rgba(255, 107, 53, 0.1);
    border: 1px solid rgba(255, 107, 53, 0.3);
    border-radius: 12px;
    padding: 15px;
    margin: 20px 0;
    text-align: center;
}

.bonus-info p {
    color: var(--dark-bg);
    font-weight: 600;
    margin: 0;
}

.modal-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 30px;
}

.btn-magicdrop {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: var(--white);
    padding: 16px 32px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    text-align: center;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.btn-magicdrop:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(255, 107, 53, 0.4);
}

.btn-decline {
    background: transparent;
    color: var(--text-gray);
    padding: 12px 24px;
    border: 2px solid var(--gray);
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    transition: var(--transition);
    cursor: pointer;
}

.btn-decline:hover {
    border-color: var(--primary-red);
    color: var(--primary-red);
}

/* Мобильная адаптивность для модального окна */
@media (max-width: 768px) {
    .modal-content {
        padding: 30px 20px;
        margin: 10px;
        max-height: 95vh;
    }
    
    .modal-title {
        font-size: 1.5rem;
    }
    
    .promo-item {
        padding: 20px;
    }
    
    .promo-code-display {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .copy-promo-btn {
        width: 100%;
        justify-content: center;
    }
    
    .modal-actions {
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .magicdrop-modal {
        padding: 10px;
    }
    
    .modal-content {
        padding: 25px 15px;
    }
    
    .modal-title {
        font-size: 1.3rem;
    }
    
    .promo-item h4 {
        font-size: 1.1rem;
    }
}

/* === ДОПОЛНИТЕЛЬНЫЕ СТИЛИ === */
.section {
    scroll-margin-top: 80px;
}

.text-center {
    text-align: center;
}

.mt-4 {
    margin-top: 2rem;
}

.mb-4 {
    margin-bottom: 2rem;
}

/* Дополнительные стили для Skinbro */
.promocode-highlight.featured {
    border-color: var(--primary-red);
    background: linear-gradient(135deg, rgba(246, 74, 53, 0.15), rgba(232, 70, 49, 0.15));
    animation: pulse 2s infinite;
}

.promocode-highlight.special {
    border-color: var(--accent-red);
    background: linear-gradient(135deg, rgba(232, 70, 49, 0.15), rgba(246, 74, 53, 0.15));
}

.value-label {
    font-size: 0.875rem;
    color: var(--text-gray);
    font-weight: 500;
}

.value-text {
    font-size: 1rem;
    color: var(--primary-red);
    font-weight: 700;
}

.auto-badge {
    background: var(--primary-red);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 12px;
    display: inline-block;
    margin-bottom: 10px;
}

.about-skinbro {
    background: var(--light-gray);
    padding: 80px 0;
}

.about-skinbro h2 {
    color: var(--dark-bg);
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 40px;
}

.about-text p {
    color: var(--text-dark);
    font-size: 1.125rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.benefits-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.benefits-list li {
    padding: 8px 0;
    position: relative;
    padding-left: 25px;
    color: var(--text-dark);
    font-size: 1.1rem;
}

.benefits-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-red);
    font-weight: bold;
} 
