/* 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 {
    /* Основные цвета MyCSGO */
    --primary-ocean: #13cdff;
    --primary-ocean-dark: #0fb3e6;
    --primary-ocean-light: #26d4ff;
    --primary-ocean-bright: #39d9ff;
    
    --accent-ocean: #0faccc;
    --accent-ocean-light: #4ce0ff;
    
    --dark-bg: #080a19;
    --dark-bg-light: #0f1122;
    --dark-bg-lighter: #161b2e;
    
    --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(--white);
    background: var(--dark-bg);
    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-ocean);
    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-ocean);
}

.nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-ocean);
    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, var(--dark-bg) 0%, var(--dark-bg-light) 50%, var(--dark-bg) 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(19,205,255,0.05)" 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: var(--white);
    isolation: isolate;
}

.hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--primary-ocean), var(--primary-ocean-light));
    -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-ocean), var(--primary-ocean-dark));
    color: var(--white);
    box-shadow: 0 4px 15px rgba(19, 205, 255, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(19, 205, 255, 0.6);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-ocean);
    border: 2px solid var(--primary-ocean);
}

.btn-secondary:hover {
    background: var(--primary-ocean);
    color: var(--white);
}

.btn-special {
    background: linear-gradient(135deg, var(--primary-ocean), var(--primary-ocean-dark));
    color: var(--white);
    border: 2px solid var(--primary-ocean);
    box-shadow: 0 4px 15px rgba(19, 205, 255, 0.3);
}

.btn-special:hover {
    background: linear-gradient(135deg, var(--primary-ocean-bright), var(--primary-ocean));
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(19, 205, 255, 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);
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-ocean);
    display: block;
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Promocodes Hero Section Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-family);
    background: var(--dark-bg);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Promocodes Hero */
.promocodes-hero {
    background: linear-gradient(135deg, var(--dark-bg) 0%, var(--dark-bg-light) 50%, var(--dark-bg) 100%);
    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-ocean-dark) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, var(--accent-ocean) 0%, transparent 50%);
    opacity: 0.1;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.promocodes-hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--primary-ocean), var(--primary-ocean-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.promocodes-hero h1 .fire-emoji {
    font-size: 1.2em;
    margin-right: 0.2em;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* Top Promocodes */
.top-promocodes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.promocode-highlight {
    background: linear-gradient(135deg, var(--dark-bg-light) 0%, var(--dark-bg-lighter) 100%);
    border-radius: 16px;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    border: 2px solid rgba(19, 205, 255, 0.2);
}

.promocodes-hero .promocode-highlight {
    border: 3px solid var(--primary-ocean);
    box-shadow: 0 10px 30px rgba(19, 205, 255, 0.3);
}

.promocode-highlight:hover {
    transform: translateY(-5px);
    border: 2px solid var(--primary-ocean);
    box-shadow: 0 15px 40px rgba(19, 205, 255, 0.4);
}

.promocode-highlight.secondary {
    border-color: var(--accent-ocean);
}

.promo-badge {
    background: linear-gradient(135deg, var(--primary-ocean) 0%, var(--accent-ocean) 100%);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-block;
    margin-bottom: 1rem;
}

.promocode-highlight h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.promocodes-hero .promocode-highlight h3 {
    color: var(--white);
}

.promo-code-main {
    margin: 1.5rem 0;
}

.promo-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    display: block;
    margin-bottom: 0.5rem;
}

.promo-code-wrapper {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(19, 205, 255, 0.3);
    border-radius: 8px;
    padding: 1rem;
    transition: var(--transition);
}

.promo-code-wrapper:hover {
    border-color: var(--primary-ocean);
    box-shadow: 0 0 20px rgba(19, 205, 255, 0.3);
}

.promo-code-text {
    font-family: 'Courier New', monospace;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-ocean-dark);
    flex: 1;
    background: none;
    border: none;
}

.copy-btn {
    background: linear-gradient(135deg, var(--primary-ocean) 0%, var(--accent-ocean) 100%);
    color: var(--white);
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.copy-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(19, 205, 255, 0.4);
}

.promo-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 1rem 0;
}

.feature {
    background: rgba(19, 205, 255, 0.1);
    color: var(--primary-ocean);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid var(--primary-ocean);
    transition: var(--transition);
}

.feature:hover {
    background: var(--primary-ocean);
    color: var(--white);
}

.promocodes-hero .feature {
    background: rgba(19, 205, 255, 0.2);
    border-color: var(--primary-ocean);
}

.promocodes-hero .feature:hover {
    background: var(--primary-ocean);
    color: var(--white);
    transform: translateY(-1px);
}

/* Buttons */
.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;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-ocean) 0%, var(--accent-ocean) 100%);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(19, 205, 255, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(19, 205, 255, 0.5);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-ocean);
    border: 2px solid var(--primary-ocean);
}

.btn-secondary:hover {
    background: var(--primary-ocean);
    color: var(--white);
}

/* Hero Stats */
.hero-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-top: 4rem;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-ocean);
    display: block;
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* All Promocodes Section */
.all-promocodes {
    padding: 80px 0;
    background: var(--dark-bg-light);
}

.all-promocodes h2 {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--white);
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Promocodes Grid */
.promocodes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.promocode-card {
    background: var(--dark-bg-lighter);
    border-radius: 16px;
    overflow: hidden;
    border: 2px solid rgba(19, 205, 255, 0.2);
    transition: var(--transition);
}

.promocode-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-ocean);
    box-shadow: 0 15px 40px rgba(19, 205, 255, 0.3);
}

.promocode-card.featured {
    border-color: var(--primary-ocean);
    position: relative;
}

.promocode-card.featured::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-ocean) 0%, var(--accent-ocean) 100%);
}

.promocode-card.special {
    border-color: var(--accent-ocean);
}

.card-header {
    padding: 1.5rem;
}

.promo-badge.top {
    background: linear-gradient(135deg, var(--primary-ocean) 0%, var(--accent-ocean) 100%);
}

.promo-badge.special {
    background: linear-gradient(135deg, var(--accent-ocean) 0%, var(--primary-ocean) 100%);
}

.card-header h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin: 1rem 0 0.5rem;
    color: var(--white);
}

.card-header p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.promo-details {
    padding: 0 1.5rem;
}

.promo-value {
    margin-bottom: 1rem;
}

.value-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.value-text {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-ocean);
}

.promo-code-section {
    margin: 1rem 0;
}

.card-footer {
    padding: 1.5rem;
}

.btn-card-primary {
    background: linear-gradient(135deg, var(--primary-ocean) 0%, var(--accent-ocean) 100%);
    color: var(--white);
    width: 100%;
}

.btn-card-secondary {
    background: transparent;
    color: var(--primary-ocean);
    border: 2px solid var(--primary-ocean);
    width: 100%;
}

.btn-card-special {
    background: linear-gradient(135deg, var(--accent-ocean) 0%, var(--primary-ocean) 100%);
    color: var(--white);
    width: 100%;
}

/* Auto Activation */
.auto-activation {
    padding: 1rem 1.5rem;
}

.auto-badge {
    background: linear-gradient(135deg, var(--primary-ocean-light) 0%, var(--primary-ocean-bright) 100%);
    color: var(--white);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 0.5rem;
}

/* Update Info */
.update-info {
    background: var(--dark-bg-lighter);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
}

.update-info h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--white);
}

.update-info p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
}

.last-update {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    font-style: italic;
}

/* How to Use Section */
.how-to-use {
    padding: 80px 0;
    background: var(--dark-bg);
}

.how-to-use h2 {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--white);
}

/* Instructions Grid */
.instructions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.instruction-card {
    background: var(--dark-bg-lighter);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    border: 2px solid rgba(19, 205, 255, 0.2);
    transition: var(--transition);
}

.instruction-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-ocean);
    box-shadow: 0 10px 30px rgba(19, 205, 255, 0.3);
}

.instruction-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-ocean) 0%, var(--accent-ocean) 100%);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
}

.instruction-content h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    color: var(--white);
}

.instruction-content p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
}

/* Instruction Types */
.instruction-types {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.instruction-type {
    background: var(--dark-bg-lighter);
    padding: 1.5rem;
    border-radius: 12px;
    display: flex;
    gap: 1rem;
    border: 2px solid rgba(19, 205, 255, 0.2);
}

.type-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.type-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--white);
}

.type-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

/* About Section */
.about-mycsgo {
    padding: 80px 0;
    background: var(--dark-bg-light);
}

.about-mycsgo h2 {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--white);
}

/* About Content */
.about-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.about-text p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.about-text strong {
    color: var(--primary-ocean);
}

/* Feature Grid */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.feature-item {
    background: var(--dark-bg-lighter);
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    border: 2px solid rgba(19, 205, 255, 0.2);
    transition: var(--transition);
}

.feature-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary-ocean);
    box-shadow: 0 10px 30px rgba(19, 205, 255, 0.2);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.feature-item h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    color: var(--white);
}

.feature-item p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

/* About CTA */
.about-cta {
    background: var(--dark-bg-lighter);
    padding: 2.5rem;
    border-radius: 16px;
    text-align: center;
    margin-top: 3rem;
}

.about-cta h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary-ocean);
}

.about-cta p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
}

/* Benefits List */
.benefits-list {
    list-style: none;
    margin: 1.5rem 0;
    text-align: left;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.benefits-list li {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
}

.benefits-list li::before {
    content: '✓';
    color: var(--primary-ocean);
    font-weight: bold;
    position: absolute;
    left: 0;
}

.btn-cta {
    background: linear-gradient(135deg, var(--primary-ocean) 0%, var(--accent-ocean) 100%);
    color: var(--white);
    padding: 1rem 2rem;
    font-size: 1.1rem;
    margin-top: 1rem;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: var(--dark-bg);
}

.faq-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--white);
}

/* FAQ Grid */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.faq-item {
    background: var(--dark-bg-lighter);
    padding: 2rem;
    border-radius: 12px;
    border: 2px solid rgba(19, 205, 255, 0.2);
    transition: var(--transition);
}

.faq-item:hover {
    transform: translateY(-3px);
    border-color: var(--primary-ocean);
    box-shadow: 0 10px 30px rgba(19, 205, 255, 0.2);
}

.faq-item h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--primary-ocean);
}

.faq-item p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

/* SEO Content */
.seo-content {
    padding: 80px 0;
    background: var(--dark-bg-light);
}

.seo-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--white);
}

.seo-text {
    max-width: 800px;
    margin: 0 auto;
}

.seo-text p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.seo-text strong {
    color: var(--primary-ocean);
}

.seo-text h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 2rem 0 1rem;
    color: var(--white);
}

.seo-text ul {
    margin: 1rem 0 2rem 2rem;
}

.seo-text li {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

/* Footer */
.footer {
    background: var(--dark-bg);
    padding: 60px 0 30px;
    border-top: 2px solid rgba(19, 205, 255, 0.2);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-main {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-brand {
    max-width: 400px;
}

.footer-brand .logo {
    margin-bottom: 1rem;
}

.footer-brand .logo-text {
    color: var(--primary-ocean);
    display: inline;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

/* Footer Links */
.footer-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.footer-column h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--primary-ocean);
}

.footer-column a {
    display: block;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: var(--transition);
}

.footer-column a:hover {
    color: var(--primary-ocean);
}

.footer-bottom {
    border-top: 1px solid rgba(19, 205, 255, 0.2);
    padding-top: 2rem;
    text-align: center;
}

.footer-copyright p,
.footer-copyright {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

/* Copy Notification */
.copy-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, var(--primary-ocean) 0%, var(--accent-ocean) 100%);
    color: var(--white);
    padding: 1rem 1.5rem;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(19, 205, 255, 0.4);
    transform: translateX(400px);
    transition: transform 0.3s ease;
    z-index: 10000;
}

.copy-notification.show {
    transform: translateX(0);
}

.notification-content {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: var(--dark-bg);
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding-top: 2rem;
        transition: left 0.3s ease;
        z-index: 999;
    }

    .nav.mobile-active {
        left: 0;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .mobile-menu-btn.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .mobile-menu-btn.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-btn.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
}

@media (max-width: 768px) {
    .logo-text {
        display: inline;
    }

    .promocodes-hero h1 {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .top-promocodes {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .hero-stats {
        gap: 2rem;
    }

    .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 {
        gap: 2rem;
    }

    .feature-grid {
        grid-template-columns: 1fr;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-links {
        grid-template-columns: 1fr;
    }

    .container {
        padding: 0 15px;
    }

    .promo-code-wrapper {
        flex-direction: column;
        gap: 0.5rem;
    }

    .copy-btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .promocodes-hero h1 {
        font-size: 1.8rem;
    }

    .promocode-highlight {
        padding: 1.5rem;
    }

    .hero-stats {
        gap: 1.5rem;
    }

    .stat-number {
        font-size: 1.8rem;
    }

    .all-promocodes h2,
    .how-to-use h2,
    .about-mycsgo h2,
    .faq-section h2,
    .seo-content h2 {
        font-size: 2rem;
    }
}

/* Animations */
@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;
}

/* Accessibility */
@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-ocean);
    outline-offset: 2px;
}

/* Utility Classes */
.section {
    padding: 80px 0;
}

.text-center {
    text-align: center;
}

.mt-4 {
    margin-top: 2rem;
}

.mb-4 {
    margin-bottom: 2rem;
}

/* Featured and Special Cards */
.promocode-highlight.featured {
    border-color: var(--primary-ocean);
    box-shadow: 0 0 30px rgba(19, 205, 255, 0.3);
}

.promocode-highlight.special {
    border-color: var(--accent-ocean);
}

.value-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.value-text {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-ocean);
}

.auto-badge {
    background: var(--primary-ocean);
    color: var(--white);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 0.5rem;
}

/* About Section - специальные стили */
.about-mycsgo {
    background: var(--dark-bg-light);
}

.about-mycsgo h2 {
    background: linear-gradient(135deg, var(--primary-ocean), var(--primary-ocean-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-text p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
}

/* Benefits List */
.benefits-list {
    list-style: none;
    padding: 0;
}

.benefits-list li {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
}

.benefits-list li::before {
    content: '✓';
    color: var(--primary-ocean);
    font-weight: bold;
    position: absolute;
    left: 0;
} 
