/*
Theme Name: Brango Casino
Theme URI: https://casinobrango.com
Author: Brango Casino Team
Author URI: https://casinobrango.com
Description: Премиальный WordPress-шаблон для Brango Casino. Современный, доверительный и конверсионный дизайн для онлайн-казино.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: brango-casino
Tags: casino, gaming, landing-page, premium, dark, modern
*/

/* ============================================
   RESET & BASE STYLES
   ============================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-primary: #071019;
    --accent-gold: #FFBE31;
    --text-light: #F5F5F5;
    --text-dark: #071019;
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', 'Montserrat', 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
}

h4 {
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
}

p {
    margin-bottom: 1rem;
    font-size: 1rem;
}

a {
    color: var(--accent-gold);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    opacity: 0.8;
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */

.site-header {
    background-color: rgba(7, 16, 25, 0.95);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 190, 49, 0.1);
    transition: var(--transition);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-logo {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--text-light);
    letter-spacing: 2px;
}

.site-logo .logo-link {
    display: inline-block;
    line-height: 0;
}

.site-logo .logo-img {
    height: 55px;
    width: auto;
    max-width: 190px;
    display: block;
    transition: var(--transition);
}

.site-logo .logo-img:hover {
    opacity: 0.9;
    transform: scale(1.05);
}

.site-logo .custom-logo-link img {
    height: 55px;
    width: auto;
    max-width: 190px;
}

.header-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.btn {
    display: inline-block;
    padding: 0.75rem 2rem;
    border-radius: 5px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-size: 0.9rem;
}

.btn-login {
    background-color: transparent;
    color: var(--text-light);
    border: 2px solid var(--text-light);
}

.btn-login:hover {
    background-color: var(--text-light);
    color: var(--bg-primary);
}

.btn-primary {
    background-color: var(--accent-gold);
    color: var(--text-dark);
    border: 2px solid var(--accent-gold);
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--accent-gold);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(255, 190, 49, 0.3);
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero-section {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.hero-banner {
    position: relative;
    min-height: 90vh;
    padding: 6rem 2rem;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #071019 0%, #0a1a2e 50%, #071019 100%);
    z-index: 1;
}

.hero-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(2px 2px at 20% 30%, rgba(255, 255, 255, 0.3) 0%, transparent 50%),
        radial-gradient(2px 2px at 60% 70%, rgba(255, 190, 49, 0.4) 0%, transparent 50%),
        radial-gradient(1px 1px at 50% 50%, rgba(255, 255, 255, 0.2) 0%, transparent 50%),
        radial-gradient(1px 1px at 80% 10%, rgba(255, 190, 49, 0.3) 0%, transparent 50%);
    background-size: 200% 200%;
    animation: shimmer 20s linear infinite;
    opacity: 0.6;
}

.hero-content {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-left {
    display: flex;
    align-items: center;
}

.hero-text-wrapper {
    width: 100%;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.hero-right {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 600px;
    height: auto;
    z-index: 2;
}

.hero-image {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
    border-radius: 15px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1s ease-out;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 900;
    margin: 0;
    background: linear-gradient(135deg, #FFBE31 0%, #FFD700 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(255, 190, 49, 0.5);
    line-height: 1.1;
    letter-spacing: -0.02em;
    text-align: left;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    margin: 0;
    color: rgba(245, 245, 245, 0.95);
    line-height: 1.7;
    font-weight: 400;
    text-align: left;
}

.hero-cta-wrapper {
    margin-top: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-cta {
    font-size: 1.1rem;
    padding: 1.2rem 3rem;
    font-weight: 700;
    letter-spacing: 1.5px;
}

/* ============================================
   PROMOTIONS SECTION
   ============================================ */

.promotions-section {
    padding: 5rem 2rem;
    background-color: rgba(255, 190, 49, 0.03);
}

.container {
    max-width: 1400px;
    margin: 0 auto;
}

.promotions-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.promo-card {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    border: 2px solid rgba(255, 190, 49, 0.3);
    background: rgba(7, 16, 25, 0.8);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    min-height: 300px;
    cursor: pointer;
    animation: fadeInUp 0.6s ease-out;
}

.promo-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 190, 49, 0.1) 0%, transparent 100%);
    opacity: 0;
    transition: var(--transition);
    z-index: 2;
    pointer-events: none;
}

.promo-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.2;
    z-index: 1;
    pointer-events: none;
    background-size: 150px 150px;
    background-repeat: repeat;
    background-position: center;
    transition: var(--transition);
}

.promo-card:hover {
    border-color: var(--accent-gold);
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 40px rgba(255, 190, 49, 0.4);
}

.promo-card:hover::before {
    opacity: 1;
}

.promo-card:hover::after {
    opacity: 0.3;
    transform: scale(1.05);
}

/* Casino-themed backgrounds for promo cards */
.promo-card-1::after {
    /* Playing Cards Pattern */
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(255, 190, 49, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 190, 49, 0.2) 0%, transparent 50%),
        url("data:image/svg+xml,%3Csvg width='100' height='140' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M20 20 L30 20 L30 40 L20 40 Z M70 20 L80 20 L80 40 L70 40 Z M20 100 L30 100 L30 120 L20 120 Z M70 100 L80 100 L80 120 L70 120 Z' fill='rgba(255,190,49,0.15)'/%3E%3Ccircle cx='50' cy='70' r='15' fill='none' stroke='rgba(255,190,49,0.15)' stroke-width='2'/%3E%3C/svg%3E");
}

.promo-card-2::after {
    /* Roulette Wheel Pattern */
    background-image: 
        radial-gradient(circle at 50% 50%, rgba(255, 190, 49, 0.2) 0%, transparent 60%),
        url("data:image/svg+xml,%3Csvg width='120' height='120' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='60' cy='60' r='50' fill='none' stroke='rgba(255,190,49,0.12)' stroke-width='2'/%3E%3Ccircle cx='60' cy='60' r='35' fill='none' stroke='rgba(255,190,49,0.12)' stroke-width='1.5'/%3E%3Ccircle cx='60' cy='60' r='20' fill='none' stroke='rgba(255,190,49,0.12)' stroke-width='1'/%3E%3Cline x1='60' y1='10' x2='60' y2='50' stroke='rgba(255,190,49,0.12)' stroke-width='1.5'/%3E%3Cline x1='60' y1='70' x2='60' y2='110' stroke='rgba(255,190,49,0.12)' stroke-width='1.5'/%3E%3Cline x1='10' y1='60' x2='50' y2='60' stroke='rgba(255,190,49,0.12)' stroke-width='1.5'/%3E%3Cline x1='70' y1='60' x2='110' y2='60' stroke='rgba(255,190,49,0.12)' stroke-width='1.5'/%3E%3C/svg%3E");
}

.promo-card-3::after {
    /* Poker Chips Pattern */
    background-image: 
        radial-gradient(circle at 30% 40%, rgba(255, 190, 49, 0.25) 0%, transparent 40%),
        radial-gradient(circle at 70% 60%, rgba(255, 190, 49, 0.2) 0%, transparent 40%),
        url("data:image/svg+xml,%3Csvg width='100' height='100' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='25' cy='25' r='20' fill='none' stroke='rgba(255,190,49,0.15)' stroke-width='2'/%3E%3Ccircle cx='25' cy='25' r='12' fill='none' stroke='rgba(255,190,49,0.15)' stroke-width='1.5'/%3E%3Ccircle cx='25' cy='25' r='6' fill='rgba(255,190,49,0.1)'/%3E%3Ccircle cx='75' cy='75' r='20' fill='none' stroke='rgba(255,190,49,0.15)' stroke-width='2'/%3E%3Ccircle cx='75' cy='75' r='12' fill='none' stroke='rgba(255,190,49,0.15)' stroke-width='1.5'/%3E%3Ccircle cx='75' cy='75' r='6' fill='rgba(255,190,49,0.1)'/%3E%3Ccircle cx='75' cy='25' r='20' fill='none' stroke='rgba(255,190,49,0.15)' stroke-width='2'/%3E%3Ccircle cx='75' cy='25' r='12' fill='none' stroke='rgba(255,190,49,0.15)' stroke-width='1.5'/%3E%3Ccircle cx='75' cy='25' r='6' fill='rgba(255,190,49,0.1)'/%3E%3Ccircle cx='25' cy='75' r='20' fill='none' stroke='rgba(255,190,49,0.15)' stroke-width='2'/%3E%3Ccircle cx='25' cy='75' r='12' fill='none' stroke='rgba(255,190,49,0.15)' stroke-width='1.5'/%3E%3Ccircle cx='25' cy='75' r='6' fill='rgba(255,190,49,0.1)'/%3E%3C/svg%3E");
}

.promo-card-4::after {
    /* Jackpot/Slot Symbols Pattern */
    background-image: 
        radial-gradient(circle at 25% 35%, rgba(255, 190, 49, 0.2) 0%, transparent 45%),
        radial-gradient(circle at 75% 65%, rgba(255, 190, 49, 0.2) 0%, transparent 45%),
        url("data:image/svg+xml,%3Csvg width='120' height='120' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 20 L50 20 L50 40 L30 40 Z M70 20 L90 20 L90 40 L70 40 Z M30 50 L50 50 L50 70 L30 70 Z M70 50 L90 50 L90 70 L70 70 Z M30 80 L50 80 L50 100 L30 100 Z M70 80 L90 80 L90 100 L70 100 Z' fill='rgba(255,190,49,0.12)'/%3E%3Ccircle cx='40' cy='30' r='3' fill='rgba(255,190,49,0.15)'/%3E%3Ccircle cx='80' cy='30' r='3' fill='rgba(255,190,49,0.15)'/%3E%3Ccircle cx='40' cy='60' r='3' fill='rgba(255,190,49,0.15)'/%3E%3Ccircle cx='80' cy='60' r='3' fill='rgba(255,190,49,0.15)'/%3E%3Ccircle cx='40' cy='90' r='3' fill='rgba(255,190,49,0.15)'/%3E%3Ccircle cx='80' cy='90' r='3' fill='rgba(255,190,49,0.15)'/%3E%3C/svg%3E");
}

.promo-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.promo-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    transform: scale(1);
}

.promo-card:hover .promo-image img {
    opacity: 0.7;
    transform: scale(1.1);
}

.promo-content {
    position: relative;
    z-index: 3;
    padding: 2rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.promo-title {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: 800;
    color: var(--text-light);
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    transition: var(--transition);
    transform: translateY(0);
}

.promo-card:hover .promo-title {
    transform: translateY(-3px);
    text-shadow: 2px 2px 8px rgba(255, 190, 49, 0.5);
}

.promo-subtitle {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    transition: var(--transition);
}

.promo-card:hover .promo-subtitle {
    color: var(--accent-gold);
}

.promo-description {
    font-size: 0.9rem;
    color: rgba(245, 245, 245, 0.85);
    line-height: 1.5;
    margin: 1rem 0;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
    transition: var(--transition);
    flex-grow: 1;
}

.promo-card:hover .promo-description {
    color: rgba(245, 245, 245, 0.95);
    text-shadow: 1px 1px 5px rgba(255, 190, 49, 0.3);
}

.promo-code {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    transition: var(--transition);
    transform: translateX(0);
}

.promo-card:hover .promo-code {
    transform: translateX(5px);
}

.promo-code-icon {
    color: var(--accent-gold);
    font-size: 0.8rem;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

.promo-code-text {
    color: var(--text-light);
    font-weight: 600;
    font-size: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    transition: var(--transition);
}

.promo-card:hover .promo-code-text {
    color: var(--accent-gold);
    text-shadow: 0 0 10px rgba(255, 190, 49, 0.5);
}

.promo-btn {
    display: inline-block;
    background-color: var(--accent-gold);
    color: var(--text-dark);
    padding: 0.75rem 1.5rem;
    border-radius: 5px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    align-self: flex-start;
    text-shadow: none;
    border: 2px solid var(--accent-gold);
    position: relative;
    overflow: hidden;
}

.promo-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.promo-btn:hover::before {
    left: 100%;
}

.promo-btn:hover {
    background-color: transparent;
    color: var(--accent-gold);
    transform: translateX(8px) scale(1.05);
    box-shadow: 0 5px 15px rgba(255, 190, 49, 0.4);
}

.promo-btn:active {
    transform: translateX(8px) scale(0.98);
}

.promo-terms {
    font-size: 0.75rem;
    color: rgba(245, 245, 245, 0.7);
    margin-top: auto;
    text-align: right;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
    transition: var(--transition);
    opacity: 0.7;
}

.promo-card:hover .promo-terms {
    opacity: 1;
    color: rgba(245, 245, 245, 0.9);
}

/* ============================================
   GAMES SECTION
   ============================================ */

.games-section {
    padding: 5rem 2rem;
}

.section-title {
    text-align: center;
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 3rem;
    color: var(--text-light);
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.game-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    overflow: hidden;
    transition: var(--transition);
    cursor: pointer;
    border: 2px solid transparent;
}

.game-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-gold);
    box-shadow: 0 10px 30px rgba(255, 190, 49, 0.3);
}

.game-image {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, rgba(255, 190, 49, 0.2) 0%, rgba(255, 190, 49, 0.1) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 0;
    overflow: hidden;
}

.game-image-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.game-card:hover .game-image-img {
    transform: scale(1.1);
}

.game-icon-svg {
    width: 80px;
    height: 80px;
    fill: var(--accent-gold);
    opacity: 0.9;
    transition: var(--transition);
}

.game-card:hover .game-icon-svg {
    transform: scale(1.1);
    opacity: 1;
}

.game-info {
    padding: 1.5rem;
}

.game-title {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

.game-play-btn {
    width: 100%;
    margin-top: 1rem;
    padding: 0.75rem;
    background-color: var(--accent-gold);
    color: var(--text-dark);
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.game-play-btn:hover {
    background-color: transparent;
    color: var(--accent-gold);
    border: 2px solid var(--accent-gold);
}

/* ============================================
   FEATURES SECTION
   ============================================ */

.features-section {
    padding: 5rem 2rem;
    background-color: rgba(255, 190, 49, 0.03);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.feature-card {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    border: 1px solid rgba(255, 190, 49, 0.1);
    transition: var(--transition);
}

.feature-card:hover {
    border-color: var(--accent-gold);
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(255, 190, 49, 0.2);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.feature-icon .icon-svg {
    width: 3rem;
    height: 3rem;
    fill: var(--accent-gold);
    transition: var(--transition);
}

.feature-card:hover .feature-icon .icon-svg {
    transform: scale(1.1) rotate(5deg);
}

.feature-title {
    font-size: 1.3rem;
    color: var(--accent-gold);
    margin-bottom: 1rem;
}

.feature-description {
    color: rgba(245, 245, 245, 0.8);
}

/* ============================================
   PAYMENT METHODS
   ============================================ */

.payment-section {
    padding: 5rem 2rem;
}

.payment-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    align-items: center;
}

.payment-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem 2rem;
    border-radius: 10px;
    border: 1px solid rgba(255, 190, 49, 0.2);
    transition: var(--transition);
    font-size: 1.2rem;
    font-weight: 600;
}

.payment-item:hover {
    border-color: var(--accent-gold);
    transform: scale(1.1);
}

/* ============================================
   TESTIMONIALS
   ============================================ */

.testimonials-section {
    padding: 5rem 2rem;
    background-color: rgba(255, 190, 49, 0.03);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid rgba(255, 190, 49, 0.2);
}

.testimonial-rating {
    color: var(--accent-gold);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 1rem;
    color: rgba(245, 245, 245, 0.9);
}

.testimonial-author {
    font-weight: 600;
    color: var(--accent-gold);
}

/* ============================================
   INFORMATION SECTION
   ============================================ */

.info-section {
    padding: 5rem 2rem;
    background-color: rgba(255, 190, 49, 0.02);
}

.info-content {
    max-width: 1000px;
    margin: 0 auto;
}

.info-block {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 190, 49, 0.2);
    border-radius: 10px;
    padding: 2rem;
    margin-bottom: 2rem;
    transition: var(--transition);
}

.info-block:hover {
    border-color: var(--accent-gold);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 5px 20px rgba(255, 190, 49, 0.1);
}

.info-block-title {
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    color: var(--accent-gold);
    margin-bottom: 1.5rem;
    font-weight: 700;
    border-bottom: 2px solid rgba(255, 190, 49, 0.3);
    padding-bottom: 0.75rem;
}

.info-block-content {
    color: rgba(245, 245, 245, 0.9);
    line-height: 1.8;
}

.info-block-content p {
    margin-bottom: 1rem;
    font-size: 1rem;
}

.info-block-content h4 {
    color: var(--accent-gold);
    font-size: 1.3rem;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.info-block-content ul,
.info-block-content ol {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.info-block-content ul li,
.info-block-content ol li {
    margin-bottom: 0.75rem;
    color: rgba(245, 245, 245, 0.85);
}

.info-block-content strong {
    color: var(--accent-gold);
    font-weight: 600;
}

/* ============================================
   FAQ SECTION
   ============================================ */

.faq-section {
    padding: 5rem 2rem;
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 190, 49, 0.2);
    border-radius: 10px;
    margin-bottom: 1rem;
    overflow: hidden;
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    transition: var(--transition);
}

.faq-question:hover {
    background: rgba(255, 190, 49, 0.1);
}

.faq-question.active {
    color: var(--accent-gold);
}

.faq-icon {
    transition: var(--transition);
    font-size: 1.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.faq-icon .icon-svg {
    width: 1.5rem;
    height: 1.5rem;
    fill: var(--accent-gold);
}

.faq-question.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 1.5rem;
}

.faq-answer.active {
    max-height: 500px;
    padding: 1.5rem;
    border-top: 1px solid rgba(255, 190, 49, 0.2);
}

/* ============================================
   FOOTER
   ============================================ */

.site-footer {
    background-color: rgba(0, 0, 0, 0.5);
    padding: 3rem 2rem 1rem;
    border-top: 1px solid rgba(255, 190, 49, 0.2);
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-column h4 {
    color: var(--accent-gold);
    margin-bottom: 1rem;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 0.5rem;
}

.footer-column a {
    color: rgba(245, 245, 245, 0.8);
    transition: var(--transition);
}

.footer-column a:hover {
    color: var(--accent-gold);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 190, 49, 0.1);
    color: rgba(245, 245, 245, 0.6);
    font-size: 0.9rem;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 768px) {
    .header-container {
        padding: 0 1rem;
        flex-wrap: wrap;
    }
    
    .site-logo .logo-img,
    .site-logo .custom-logo-link img {
        height: 45px;
        max-width: 160px;
    }

    .header-actions {
        width: 100%;
        justify-content: center;
        margin-top: 1rem;
    }

    .btn {
        padding: 0.6rem 1.5rem;
        font-size: 0.85rem;
    }

    .hero-banner {
        min-height: auto;
        padding: 4rem 1rem;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .hero-left {
        order: 2;
    }
    
    .hero-right {
        order: 1;
    }
    
    .hero-text-wrapper {
        text-align: center;
    }
    
    .hero-title {
        text-align: center;
    }
    
    .hero-subtitle {
        text-align: center;
        font-size: 1rem;
    }
    
    .hero-image-wrapper {
        max-width: 100%;
    }
    
    .hero-cta {
        font-size: 1rem;
        padding: 1rem 2rem;
    }

    .promotions-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .promo-card {
        min-height: 250px;
    }
    
    .promo-content {
        padding: 1.5rem;
    }

    .games-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    @media (min-width: 1024px) {
        .games-grid {
            grid-template-columns: repeat(4, 1fr);
        }
    }

    .features-grid {
        grid-template-columns: 1fr;
    }
}

@media (min-width: 769px) and (max-width: 1023px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .payment-grid {
        gap: 1rem;
    }

    .payment-item {
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
    
    .info-section {
        padding: 3rem 1rem;
    }
    
    .info-block {
        padding: 1.5rem;
    }
    
    .info-block-content ul,
    .info-block-content ol {
        margin-left: 1.5rem;
    }
}

@media (max-width: 480px) {
    .site-logo {
        font-size: 1.5rem;
    }
    
    .site-logo .logo-img,
    .site-logo .custom-logo-link img {
        height: 40px;
        max-width: 140px;
    }

    .hero-banner {
        min-height: auto;
        padding: 3rem 1rem;
    }
    
    .hero-content {
        gap: 2rem;
    }
    
    .hero-text-wrapper {
        gap: 1.25rem;
    }
    
    .hero-title {
        font-size: 2rem;
        text-align: center;
    }

    .hero-subtitle {
        font-size: 0.95rem;
        line-height: 1.6;
        text-align: center;
    }
    
    .hero-cta {
        font-size: 0.9rem;
        padding: 0.9rem 1.8rem;
    }
    
    .hero-image-wrapper {
        max-width: 100%;
    }

    .bonus-title {
        font-size: 1.5rem;
    }

    .section-title {
        font-size: 1.75rem;
    }
}

/* ============================================
   UTILITY CLASSES
   ============================================ */

.text-center {
    text-align: center;
}

.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }

