/* ===================================
   Font Import
   =================================== */


/* ===================================
   CSS Variables - Modern Design System
   =================================== */
:root {
    /* Elegant Deep Blue & Amber Theme */
    --color-primary-dark: #0D1117;
    --color-secondary-dark: #161B22;
    --color-accent-primary: #3B82F6;
    --color-accent-secondary: #F59E0B;
    --color-accent-tertiary: #8B5CF6;
    --color-accent-purple: #A855F7;
    --color-accent-gold: #FBBF24;
    --color-accent-teal: #14B8A6;
    --color-white: #FFFFFF;
    --color-black: #000000;

    /* Modern Gradient Colors */
    --gradient-primary: linear-gradient(135deg, #3B82F6 0%, #8B5CF6 50%, #F59E0B 100%);
    --gradient-secondary: linear-gradient(135deg, #F59E0B 0%, #3B82F6 50%, #14B8A6 100%);
    --gradient-accent: linear-gradient(135deg, #3B82F6 0%, #8B5CF6 100%);
    --gradient-gold: linear-gradient(135deg, #F59E0B 0%, #FBBF24 100%);
    --gradient-dark: linear-gradient(135deg, #0D1117 0%, #161B22 50%, #1F2937 100%);
    --gradient-card: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(139, 92, 246, 0.1) 50%, rgba(245, 158, 11, 0.1) 100%);
    --gradient-glow: linear-gradient(135deg, rgba(59, 130, 246, 0.4) 0%, rgba(139, 92, 246, 0.4) 100%);

    /* Text Colors */
    --color-text-primary: #FFFFFF;
    --color-text-secondary: #E8E8E8;
    --color-text-tertiary: #B0B0B0;
    --color-text-disclaimer: #888888;

    /* Background Colors */
    --color-bg-primary: var(--color-primary-dark);
    --color-bg-secondary: var(--color-secondary-dark);
    --color-bg-glass: rgba(255, 255, 255, 0.05);
    --color-bg-glass-hover: rgba(255, 255, 255, 0.1);

    /* Typography */
    --font-primary: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-xxl: 4rem;

    /* Container */
    --container-max-width: 1280px;
    --container-padding: var(--spacing-md);

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --radius-full: 9999px;

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.5);
    --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.6);
    --shadow-glow: 0 0 30px rgba(59, 130, 246, 0.5);
    --shadow-glow-amber: 0 0 30px rgba(245, 158, 11, 0.5);
    --shadow-glow-purple: 0 0 30px rgba(139, 92, 246, 0.5);

    /* Transitions */
    --transition-fast: 200ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-normal: 300ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 500ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: 400ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* ===================================
   Reset & Base Styles
   =================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    font-weight: 400;
    line-height: 1.6;
    color: var(--color-text-primary);
    background: var(--gradient-dark);
    background-attachment: fixed;
    overflow-x: hidden;
    position: relative;
}

/* Animated Background Pattern - Unique Design */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(59, 130, 246, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(245, 158, 11, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(139, 92, 246, 0.1) 0%, transparent 60%),
        radial-gradient(circle at 10% 80%, rgba(20, 184, 166, 0.08) 0%, transparent 40%);
    pointer-events: none;
    z-index: 0;
    animation: backgroundPulse 20s ease-in-out infinite;
}

@keyframes backgroundPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.1); }
}

/* Additional Animated Background Elements */
body::after {
    content: '';
    position: fixed;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: 
        radial-gradient(circle, rgba(59, 130, 246, 0.03) 0%, transparent 50%),
        radial-gradient(circle, rgba(245, 158, 11, 0.03) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
    animation: rotate 30s linear infinite;
}

/* ===================================
   Typography
   =================================== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--spacing-sm);
    color: var(--color-text-primary);
    letter-spacing: -0.02em;
}

h1 {
    font-size: clamp(2.25rem, 5vw, 3.5rem);
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 20px rgba(59, 130, 246, 0.3));
    animation: textShimmer 3s ease-in-out infinite;
}

@keyframes textShimmer {
    0%, 100% { filter: drop-shadow(0 0 20px rgba(59, 130, 246, 0.3)); }
    50% { filter: drop-shadow(0 0 30px rgba(245, 158, 11, 0.5)); }
}

h2 {
    font-size: clamp(1.875rem, 4vw, 2.75rem);
}

h3 {
    font-size: clamp(1.5rem, 3.5vw, 2.25rem);
}

h4 {
    font-size: clamp(1.25rem, 3vw, 1.75rem);
}

p {
    margin-bottom: var(--spacing-sm);
    color: var(--color-text-secondary);
}

a {
    color: var(--color-accent-primary);
    text-decoration: none;
    transition: all var(--transition-fast);
}

a:hover {
    opacity: 0.8;
}

/* ===================================
   Container
   =================================== */
.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
    width: 100%;
    position: relative;
    z-index: 1;
}

/* ===================================
   Utility Classes
   =================================== */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

/* ===================================
   Section Styles
   =================================== */
section {
    padding: var(--spacing-xl) 0;
    position: relative;
    z-index: 1;
}

/* ===================================
   Header Styles - Glassmorphism
   =================================== */
.header {
    padding: var(--spacing-md) 0;
    background: var(--color-bg-glass);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--shadow-md);
}

.header__content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header__logo {
    display: block;
    max-width: 100px;
    transition: transform var(--transition-normal);
}

.header__logo:hover {
    transform: scale(1.05);
}

.header__logo img {
    width: 100%;
    height: auto;
    display: block;
    filter: drop-shadow(0 2px 8px rgba(59, 130, 246, 0.4));
    transition: filter var(--transition-normal);
}

.header__logo:hover img {
    filter: drop-shadow(0 4px 16px rgba(59, 130, 246, 0.6));
}

/* ===================================
   Hero Section - Modern Design
   =================================== */
.hero {
    padding: var(--spacing-xxl) 0;
    position: relative;
    overflow: hidden;
}

.hero__card {
    position: relative;
    background: var(--color-bg-glass);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: var(--radius-xl);
    overflow: hidden;
    min-height: 400px;
    display: flex;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: var(--shadow-xl);
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.hero__card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: var(--gradient-primary);
    opacity: 0.15;
    animation: rotate 20s linear infinite;
    z-index: 0;
}

.hero__card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(45deg, transparent 30%, rgba(59, 130, 246, 0.05) 50%, transparent 70%);
    background-size: 200% 200%;
    animation: shimmer 3s ease-in-out infinite;
    z-index: 1;
    pointer-events: none;
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.hero__background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("{{ 'assets/images/photo1.webp'|theme }}");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
    opacity: 0.3;
}

.hero__background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 14, 39, 0.95) 0%, rgba(20, 27, 61, 0.85) 50%, rgba(10, 14, 39, 0.7) 100%);
    z-index: 1;
}

.hero__content {
    position: relative;
    z-index: 2;
    max-width: 750px;
    padding: var(--spacing-xl) var(--spacing-lg);
}

.hero__subtitle {
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--color-accent-primary);
    margin-bottom: var(--spacing-sm);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    text-shadow: 0 0 10px rgba(59, 130, 246, 0.5);
}

.hero__subtitle::before {
    content: '';
    width: 40px;
    height: 2px;
    background: var(--gradient-accent);
    border-radius: var(--radius-full);
    box-shadow: 0 0 10px rgba(59, 130, 246, 0.6);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scaleX(1); }
    50% { opacity: 0.7; transform: scaleX(1.2); }
}

.hero__title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: var(--spacing-md);
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 30px rgba(59, 130, 246, 0.4));
    animation: titleGlow 3s ease-in-out infinite;
}

@keyframes titleGlow {
    0%, 100% { filter: drop-shadow(0 0 30px rgba(59, 130, 246, 0.4)); }
    50% { filter: drop-shadow(0 0 40px rgba(245, 158, 11, 0.6)); }
}

.hero__edition {
    font-size: 1.125rem;
    font-weight: 400;
    color: var(--color-text-secondary);
    margin-bottom: var(--spacing-lg);
    line-height: 1.7;
}

.hero__features {
    display: flex;
    gap: var(--spacing-md);
    flex-wrap: wrap;
}

.hero__feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: var(--spacing-sm) var(--spacing-md);
    background: var(--color-bg-glass);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: var(--radius-full);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.hero__feature::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-accent);
    opacity: 0.1;
    transition: left var(--transition-normal);
}

.hero__feature:hover::before {
    left: 0;
}

.hero__feature:hover {
    transform: translateY(-2px);
    border-color: var(--color-accent-primary);
    box-shadow: var(--shadow-glow), 0 0 20px rgba(59, 130, 246, 0.3);
    background: rgba(59, 130, 246, 0.1);
}

.hero__feature img {
    width: 24px;
    height: 24px;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(59, 130, 246, 0.6));
    position: relative;
    z-index: 1;
}

.hero__feature span {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--color-white);
    white-space: nowrap;
    position: relative;
    z-index: 1;
}

/* ===================================
   Offers Section - Unique Card Design
   =================================== */
.offers {
    padding: var(--spacing-xxl) 0;
    position: relative;
}

.offers::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(102, 126, 234, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.offer-card {
    display: flex;
    gap: var(--spacing-lg);
    padding: var(--spacing-lg);
    background: var(--color-bg-glass);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: var(--radius-xl);
    margin-bottom: var(--spacing-lg);
    transition: all var(--transition-normal);
    text-decoration: none;
    color: inherit;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
}

.offer-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-card);
    opacity: 0;
    transition: opacity var(--transition-normal);
    z-index: 0;
}

.offer-card:hover::before {
    opacity: 1;
}

.offer-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-xl), var(--shadow-glow), 0 0 40px rgba(59, 130, 246, 0.2);
    border-color: rgba(59, 130, 246, 0.4);
    background: rgba(59, 130, 246, 0.05);
}

.offer-card:last-child {
    margin-bottom: 0;
}

/* Left Section */
.offer-card__left {
    position: relative;
    flex-shrink: 0;
    z-index: 1;
}

.offer-card__logo {
    width: 300px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-bg-glass);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.1);
    transition: all var(--transition-normal);
    position: relative;
}

.offer-card:hover .offer-card__logo {
    border-color: var(--color-accent-primary);
    box-shadow: var(--shadow-glow), 0 0 30px rgba(59, 130, 246, 0.4);
    transform: scale(1.05);
}

.offer-card__logo::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.offer-card:hover .offer-card__logo::after {
    opacity: 0.1;
}

.offer-card__logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
    position: relative;
    z-index: 1;
}

.offer-card:hover .offer-card__logo img {
    transform: scale(1.1);
}

/* Center Section */
.offer-card__center {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
    z-index: 1;
}

.offer-card__bonus-title {
    font-size: 1.5rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
    filter: drop-shadow(0 0 10px rgba(59, 130, 246, 0.3));
}

.offer-card__bonus-text {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--color-white);
    margin: 0;
    line-height: 1.3;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.offer-card__terms {
    font-size: 0.875rem;
    color: var(--color-text-tertiary);
    line-height: 1.6;
    margin: 0;
}

/* Right Section */
.offer-card__right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: var(--spacing-md);
    flex-shrink: 0;
    z-index: 1;
}

.offer-card__rating {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: var(--spacing-sm);
}

.offer-card__stars img {
    height: 24px;
    width: auto;
    filter: drop-shadow(0 2px 4px rgba(245, 158, 11, 0.6));
}

.offer-card__score-info {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.25rem;
}

.offer-card__category {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-white);
}

.offer-card__score {
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    border: 3px solid;
    border-image: var(--gradient-primary) 1;
    padding: var(--spacing-sm) var(--spacing-md);
    border-radius: var(--radius-lg);
    min-width: 90px;
    text-align: center;
    position: relative;
    box-shadow: var(--shadow-glow);
    animation: scorePulse 2s ease-in-out infinite;
}

@keyframes scorePulse {
    0%, 100% { box-shadow: var(--shadow-glow); }
    50% { box-shadow: var(--shadow-glow), 0 0 25px rgba(245, 158, 11, 0.5); }
}

.offer-card__btn {
    width: 100%;
    max-width: 300px;
    padding: var(--spacing-md) var(--spacing-xl);
    background: var(--gradient-primary);
    color: var(--color-primary-dark);
    font-size: 1.125rem;
    font-weight: 700;
    border: none;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: all var(--transition-bounce);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    box-shadow: var(--shadow-lg), var(--shadow-glow);
    position: relative;
    overflow: hidden;
}

.offer-card__btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.offer-card__btn:hover::before {
    width: 300px;
    height: 300px;
}

.offer-card__btn:hover {
    transform: scale(1.05) translateY(-2px);
    box-shadow: var(--shadow-xl), 0 0 40px rgba(59, 130, 246, 0.6), 0 0 60px rgba(245, 158, 11, 0.4);
    background: var(--gradient-secondary);
}

.offer-card__btn:active {
    transform: scale(0.98);
}

/* ===================================
   Content Section
   =================================== */
.content-section {
    padding: var(--spacing-xxl) 0;
    position: relative;
}

.content-section__title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: var(--spacing-xl);
    text-align: center;
    position: relative;
    padding-bottom: var(--spacing-md);
    filter: drop-shadow(0 0 20px rgba(59, 130, 246, 0.3));
}

.content-section__title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: var(--radius-full);
    box-shadow: 0 0 15px rgba(59, 130, 246, 0.6);
    animation: linePulse 2s ease-in-out infinite;
}

@keyframes linePulse {
    0%, 100% { width: 100px; opacity: 1; }
    50% { width: 150px; opacity: 0.8; }
}

.content-section__subtitle {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--color-accent-primary);
    margin-top: var(--spacing-xl);
    margin-bottom: var(--spacing-md);
    text-shadow: 0 0 15px rgba(59, 130, 246, 0.4);
}

.content-section p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--color-text-secondary);
    margin-bottom: var(--spacing-md);
}

.content-section strong {
    color: var(--color-white);
    font-weight: 600;
}

.content-section__list {
    list-style: none;
    padding: 0;
    margin: var(--spacing-xl) 0;
}

.content-section__list li {
    margin-bottom: var(--spacing-lg);
    padding: var(--spacing-lg);
    background: var(--color-bg-glass);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all var(--transition-normal);
}

.content-section__list li:hover {
    transform: translateX(8px);
    border-color: var(--color-accent-primary);
    box-shadow: var(--shadow-md), 0 0 20px rgba(59, 130, 246, 0.2);
    background: rgba(59, 130, 246, 0.05);
}

.content-section__list li strong {
    display: block;
    font-size: 1.25rem;
    color: var(--color-accent-primary);
    margin-bottom: var(--spacing-sm);
    text-shadow: 0 0 10px rgba(59, 130, 246, 0.4);
}

.content-section__list li p {
    margin: 0;
    padding-left: 0;
}

.content-section__games-list {
    list-style: none;
    padding: 0;
    margin: var(--spacing-md) 0 var(--spacing-lg);
}

.content-section__games-list li {
    margin-bottom: var(--spacing-md);
    line-height: 1.8;
    color: var(--color-text-secondary);
    font-size: 1.125rem;
    padding-left: var(--spacing-lg);
    position: relative;
}

.content-section__games-list li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--color-accent-primary);
    font-size: 1.5rem;
    text-shadow: 0 0 10px rgba(59, 130, 246, 0.6);
    animation: arrowPulse 2s ease-in-out infinite;
}

@keyframes arrowPulse {
    0%, 100% { transform: translateX(0); opacity: 1; }
    50% { transform: translateX(5px); opacity: 0.7; }
}

.content-section__games-list li strong {
    color: var(--color-white);
}

.content-section__steps {
    list-style: none;
    padding: 0;
    margin: var(--spacing-md) 0 var(--spacing-lg);
    counter-reset: step-counter;
}

.content-section__steps li {
    margin-bottom: var(--spacing-md);
    line-height: 1.8;
    color: var(--color-text-secondary);
    font-size: 1.125rem;
    counter-increment: step-counter;
    padding-left: var(--spacing-xl);
    position: relative;
}

.content-section__steps li::before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 0;
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    color: var(--color-primary-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.125rem;
    box-shadow: var(--shadow-glow);
    animation: stepPulse 2s ease-in-out infinite;
}

@keyframes stepPulse {
    0%, 100% { box-shadow: var(--shadow-glow); transform: scale(1); }
    50% { box-shadow: var(--shadow-glow), 0 0 20px rgba(245, 158, 11, 0.5); transform: scale(1.05); }
}

.content-section__steps li strong {
    color: var(--color-white);
}

.content-section__cta {
    margin-top: var(--spacing-xl);
    padding: var(--spacing-xl);
    background: var(--color-bg-glass);
    backdrop-filter: blur(20px);
    border-radius: var(--radius-xl);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-left: 4px solid;
    border-image: var(--gradient-primary) 1;
    box-shadow: var(--shadow-lg), 0 0 30px rgba(59, 130, 246, 0.1);
    position: relative;
    overflow: hidden;
}

.content-section__cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
    animation: rotate 15s linear infinite;
    pointer-events: none;
}

.content-section__cta h3 {
    margin-top: 0;
}

.content-section__cta p {
    margin-bottom: 0;
}

/* ===================================
   Responsible Gaming Section
   =================================== */
.responsible-gaming {
    padding: var(--spacing-xxl) 0;
    background: var(--color-bg-glass);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

.responsible-gaming::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(102, 126, 234, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.responsible-gaming__title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
    margin-bottom: var(--spacing-xl);
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 0 20px rgba(59, 130, 246, 0.3));
}

.responsible-gaming__logos {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-xl);
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.responsible-gaming__logo {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 90px;
    text-decoration: none;
    padding: var(--spacing-md);
    background: var(--color-bg-glass);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all var(--transition-normal);
}

.responsible-gaming__logo:hover {
    transform: translateY(-4px) scale(1.05);
    border-color: var(--color-accent-primary);
    box-shadow: var(--shadow-glow), 0 0 25px rgba(59, 130, 246, 0.4);
    background: rgba(59, 130, 246, 0.1);
}

.responsible-gaming__logo img {
    max-width: 100%;
    max-height: 100%;
    height: auto;
    width: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.9;
    transition: opacity var(--transition-fast);
}

.responsible-gaming__logo:hover img {
    opacity: 1;
    filter: brightness(0) invert(1) drop-shadow(0 0 12px rgba(59, 130, 246, 0.6));
}

/* ===================================
   Footer Styles - Modern Design
   =================================== */
.footer {
    padding: var(--spacing-xxl) 0 var(--spacing-lg);
    background: var(--color-bg-glass);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 0%, rgba(102, 126, 234, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.footer__top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--spacing-xl);
    padding-bottom: var(--spacing-lg);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 1;
}

.footer__logo {
    max-width: 100px;
    transition: transform var(--transition-normal);
}

.footer__logo:hover {
    transform: scale(1.1) rotate(5deg);
}

.footer__logo img {
    width: 100%;
    height: auto;
    display: block;
    filter: drop-shadow(0 2px 8px rgba(59, 130, 246, 0.4));
}

.footer__age-badge {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: var(--gradient-primary);
    color: var(--color-primary-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 800;
    box-shadow: var(--shadow-glow);
    transition: all var(--transition-bounce);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.footer__age-badge::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    animation: rotate 3s linear infinite;
}

.footer__age-badge:hover {
    transform: scale(1.1) rotate(360deg);
}

.footer__disclaimer {
    margin-bottom: var(--spacing-lg);
    position: relative;
    z-index: 1;
}

.footer__disclaimer p {
    font-size: 0.9375rem;
    line-height: 1.8;
    color: var(--color-text-secondary);
    margin: 0;
}

.footer__disclaimer strong {
    color: var(--color-accent-primary);
    font-weight: 600;
    text-shadow: 0 0 8px rgba(59, 130, 246, 0.4);
}

.footer__copyright {
    padding-top: var(--spacing-md);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    position: relative;
    z-index: 1;
}

.footer__copyright p {
    font-size: 0.875rem;
    color: var(--color-text-tertiary);
    margin: 0;
}

/* ===================================
   Responsive Design
   =================================== */
@media (max-width: 1024px) {
    .header__logo {
        max-width: 80px;
    }

    .hero__card {
        min-height: 350px;
    }

    .hero__content {
        max-width: 600px;
        padding: var(--spacing-lg);
    }

    .offer-card__logo {
        width: 240px;
        height: 160px;
    }

    .offer-card__btn {
        max-width: 240px;
        padding: var(--spacing-sm) var(--spacing-lg);
    }
}

@media (max-width: 768px) {
    :root {
        --container-padding: var(--spacing-sm);
    }

    section {
        padding: var(--spacing-lg) 0;
    }

    .header__logo {
        max-width: 70px;
    }

    .hero {
        padding: var(--spacing-lg) 0;
    }

    .hero__card {
        min-height: 320px;
    }

    .hero__content {
        padding: var(--spacing-md) var(--spacing-sm);
    }

    .hero__title {
        font-size: clamp(2rem, 6vw, 3rem);
    }

    .hero__features {
        gap: var(--spacing-sm);
    }

    .hero__feature {
        padding: 0.5rem var(--spacing-sm);
    }

    /* Mobile Offer Cards */
    .offer-card {
        flex-direction: column;
        align-items: stretch;
        gap: var(--spacing-md);
        padding: var(--spacing-md);
    }

    .offer-card__left {
        width: 100%;
    }

    .offer-card__logo {
        width: 100%;
        height: 220px;
    }

    .offer-card__center {
        order: 2;
    }

    .offer-card__right {
        order: 1;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        width: 100%;
    }

    .offer-card__rating {
        flex-direction: row;
        align-items: center;
        gap: var(--spacing-sm);
    }

    .offer-card__score {
        font-size: 2rem;
        min-width: 70px;
    }

    .offer-card__btn {
        max-width: 200px;
        padding: var(--spacing-sm) var(--spacing-md);
        font-size: 1rem;
    }

    .responsible-gaming__logos {
        gap: var(--spacing-md);
    }

    .responsible-gaming__logo {
        height: 70px;
        padding: var(--spacing-sm);
    }

    .footer__top {
        flex-direction: column;
        gap: var(--spacing-md);
        text-align: center;
    }

    .footer__logo {
        max-width: 120px;
    }

    .footer__age-badge {
        width: 80px;
        height: 80px;
        font-size: 1.75rem;
    }
}

@media (max-width: 480px) {
    .hero__card {
        min-height: 280px;
    }

    .hero__content {
        padding: var(--spacing-sm);
    }

    .hero__title {
        font-size: clamp(1.75rem, 6vw, 2.5rem);
        margin-bottom: var(--spacing-sm);
    }

    .hero__subtitle,
    .hero__edition {
        font-size: 1rem;
    }

    .hero__features {
        flex-direction: column;
        align-items: stretch;
    }

    .hero__feature {
        width: 100%;
        justify-content: center;
    }

    .offer-card__right {
        flex-direction: column;
        align-items: stretch;
    }

    .offer-card__rating {
        flex-direction: column;
        align-items: flex-start;
    }

    .offer-card__btn {
        max-width: 100%;
    }

    .responsible-gaming__logos {
        gap: var(--spacing-sm);
    }

    .responsible-gaming__logo {
        height: 60px;
    }

    .footer__age-badge {
        width: 70px;
        height: 70px;
        font-size: 1.5rem;
    }

    .footer__disclaimer p {
        font-size: 0.875rem;
    }
}
