/* ==========================================================================
   Base Reset & Premium Styling System
   ========================================================================== */

:root {
  --bg-primary: #13111A;
  --bg-secondary: #1E1A2B;
  --bg-card: rgba(38, 34, 53, 0.65);
  --accent-primary: #B388FF;
  --accent-secondary: #8B5CF6;
  --accent-soft: #C084FC;
  --text-primary: #F4F1FF;
  --text-secondary: #A9A3B8;
  --border-glow: rgba(179, 136, 255, 0.22);
  --shadow-glow: 0 0 30px rgba(179, 136, 255, 0.25);
  
  /* System variables */
  --font-main: 'Poppins', 'Inter', sans-serif;
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --card-blur: blur(20px);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: var(--font-main);
}

body {
    background-color: var(--bg-primary);
    background-image: 
        radial-gradient(circle at 50% 15%, rgba(139, 92, 246, 0.08) 0%, transparent 60%),
        radial-gradient(circle at 10% 25%, rgba(192, 132, 252, 0.03) 0%, transparent 40%),
        radial-gradient(circle at 90% 75%, rgba(139, 92, 246, 0.03) 0%, transparent 40%);
    background-attachment: fixed;
    color: var(--text-primary);
    min-height: 100vh;
    overflow-x: hidden;
    padding-bottom: 110px; /* Space for the bottom floating banner */
}

/* Premium Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
    background: #2D273E;
    border-radius: 4px;
    border: 1px solid rgba(179, 136, 255, 0.1);
}
::-webkit-scrollbar-thumb:hover {
    background: var(--accent-primary);
    box-shadow: 0 0 8px var(--accent-primary);
}

/* Canvas background alignment */
#premium-bg-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -10;
    pointer-events: none;
}

/* Containers */
.content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 2;
}

/* ==========================================================================
   Header & Navbar
   ========================================================================== */

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background: rgba(19, 17, 26, 0.75);
    backdrop-filter: var(--card-blur);
    -webkit-backdrop-filter: var(--card-blur);
    border-bottom: 1px solid rgba(179, 136, 255, 0.15);
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    width: 34px;
    height: 34px;
    filter: drop-shadow(0 0 8px rgba(179, 136, 255, 0.6));
}

.logo-text {
    font-size: 26px;
    font-weight: 800;
    color: var(--text-primary);
    text-shadow: 0 0 10px rgba(179, 136, 255, 0.45);
    letter-spacing: 0.5px;
}

/* ==========================================================================
   Universal Button Styles
   ========================================================================== */

.btn {
    border: none;
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition-smooth);
    font-size: 15px;
    outline: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    z-index: 1;
    background: transparent;
}

/* Glow Keyframes */
@keyframes buttonPulse {
    0% { box-shadow: 0 0 12px rgba(139, 92, 246, 0.35); }
    50% { box-shadow: 0 0 24px rgba(139, 92, 246, 0.65); }
    100% { box-shadow: 0 0 12px rgba(139, 92, 246, 0.35); }
}

@keyframes rotateBorder {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* Primary Button Styling */
.btn-primary, .btn-nav-register, .btn-floater-register {
    color: #120F18;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3), inset 0 1px 1px rgba(255, 255, 255, 0.35);
}

.btn-primary::before, .btn-nav-register::before, .btn-floater-register::before {
    content: '';
    position: absolute;
    top: -150%;
    left: -50%;
    width: 200%;
    height: 400%;
    background: conic-gradient(from 0deg, transparent 40%, #FFFFFF 50%, transparent 60%);
    animation: rotateBorder 3s linear infinite;
    z-index: -2;
}

.btn-primary::after, .btn-nav-register::after, .btn-floater-register::after {
    content: '';
    position: absolute;
    inset: 1.5px;
    background: linear-gradient(135deg, var(--accent-primary) 0%, var(--accent-secondary) 100%);
    border-radius: 50px;
    z-index: -1;
    transition: var(--transition-smooth);
}

.btn-primary:hover, .btn-nav-register:hover, .btn-floater-register:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.55), inset 0 1px 2px rgba(255, 255, 255, 0.5);
}

.btn-primary:hover::after, .btn-nav-register:hover::after, .btn-floater-register:hover::after {
    background: linear-gradient(135deg, #C084FC 0%, var(--accent-primary) 100%);
}

/* Secondary Button styling */
.btn-secondary {
    color: var(--text-primary);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
    backdrop-filter: var(--card-blur);
    -webkit-backdrop-filter: var(--card-blur);
}

.btn-secondary::before {
    content: '';
    position: absolute;
    top: -150%;
    left: -50%;
    width: 200%;
    height: 400%;
    background: conic-gradient(from 0deg, transparent 40%, var(--accent-primary) 50%, transparent 60%);
    animation: rotateBorder 3.5s linear infinite;
    z-index: -2;
}

.btn-secondary::after {
    content: '';
    position: absolute;
    inset: 1.5px;
    background: rgba(30, 26, 43, 0.85);
    border-radius: 50px;
    z-index: -1;
    transition: var(--transition-smooth);
}

.btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(179, 136, 255, 0.3);
}

.btn-secondary:hover::after {
    background: rgba(139, 92, 246, 0.2);
}

.btn-nav-register {
    padding: 11px 26px;
    font-size: 14px;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */

.hero-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 90px 0 60px 0;
}

.tagline-badge {
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(179, 136, 255, 0.3);
    color: var(--accent-primary);
    font-size: 14px;
    font-weight: 600;
    padding: 8px 20px;
    border-radius: 30px;
    margin-bottom: 26px;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.1);
}

.fire-emoji {
    filter: drop-shadow(0 0 6px var(--accent-primary));
}

.main-title {
    font-size: 68px;
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 22px;
    letter-spacing: -1.5px;
    text-shadow: 0 10px 30px rgba(19, 17, 26, 0.9), 0 0 25px rgba(139, 92, 246, 0.15);
}

.gradient-text {
    background: linear-gradient(135deg, #ffffff 40%, var(--accent-primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 8px rgba(179, 136, 255, 0.3));
}

.hero-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 800px;
    line-height: 1.65;
    margin-bottom: 44px;
}

.hero-btn-container {
    display: flex;
    gap: 20px;
    margin-bottom: 60px;
    flex-wrap: wrap;
    justify-content: center;
}

.btn-primary {
    padding: 16px 38px;
    font-size: 16px;
}

.btn-secondary {
    padding: 16px 38px;
    font-size: 16px;
}

/* Welcome Bonus Floating Box */
.welcome-bonus-box {
    background: rgba(30, 26, 43, 0.7);
    backdrop-filter: var(--card-blur);
    -webkit-backdrop-filter: var(--card-blur);
    border-radius: 22px;
    padding: 20px 40px;
    display: flex;
    align-items: center;
    gap: 22px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4), 0 0 20px rgba(179, 136, 255, 0.15);
    border: 1px solid rgba(179, 136, 255, 0.25);
    animation: floatAnimation 3.5s ease-in-out infinite;
    max-width: 340px;
}

.gift-icon-container {
    width: 38px;
    height: 38px;
    color: var(--accent-primary);
    filter: drop-shadow(0 0 8px rgba(179, 136, 255, 0.6));
}

.welcome-text-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.welcome-title {
    color: var(--text-secondary);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
}

.welcome-amount {
    color: var(--text-primary);
    font-size: 40px;
    font-weight: 800;
    line-height: 1;
    text-shadow: 0 0 15px rgba(179, 136, 255, 0.65);
    background: linear-gradient(135deg, #ffffff 40%, var(--accent-primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Floating animation details */
@keyframes floatAnimation {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-8px); }
    100% { transform: translateY(0px); }
}

/* ==========================================================================
   Gift Code Section
   ========================================================================== */

.gift-section {
    padding: 30px 0;
}

.gift-card {
    background: linear-gradient(135deg, rgba(58, 53, 74, 0.45), rgba(30, 26, 43, 0.75));
    backdrop-filter: var(--card-blur);
    -webkit-backdrop-filter: var(--card-blur);
    border: 1px solid rgba(179, 136, 255, 0.25);
    border-radius: 26px;
    padding: 45px;
    text-align: center;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.45), 0 0 30px rgba(139, 92, 246, 0.12);
}

.gift-title {
    font-size: 34px;
    font-weight: 800;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.gift-title-text {
    background: linear-gradient(135deg, #ffffff 40%, var(--accent-primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 20px rgba(179, 136, 255, 0.3);
}

.gift-icon-3d {
    width: 36px;
    height: 36px;
    filter: drop-shadow(0 0 8px rgba(179, 136, 255, 0.65));
    flex-shrink: 0;
    animation: floatAnimation 3.5s ease-in-out infinite;
}

.gift-subtitle {
    font-size: 15px;
    color: var(--text-secondary);
    margin-bottom: 35px;
}

.gift-codes-wrapper {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    max-width: 720px;
    margin: 0 auto;
}

.gift-codes-container {
    display: flex;
    flex-direction: column;
    gap: 18px;
    transition: filter 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.gift-codes-container.blurred {
    filter: blur(8px);
    pointer-events: none;
}

.gift-codes-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(19, 17, 26, 0.25);
    z-index: 10;
    transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.gift-codes-overlay.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

/* Unlock button styling */
.btn-unlock {
    padding: 16px 36px !important;
    font-size: 16px !important;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.4) !important;
}

.btn-lock-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: 12px;
}

.btn-lock-icon svg {
    width: 18px;
    height: 18px;
    stroke: #120F18;
}

.gift-code-row {
    background: rgba(18, 15, 25, 0.65);
    border: 1px solid rgba(179, 136, 255, 0.15);
    border-radius: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 26px;
    gap: 20px;
    transition: var(--transition-smooth);
}

.gift-code-row:hover {
    border-color: rgba(179, 136, 255, 0.4);
    background: rgba(30, 26, 43, 0.85);
    box-shadow: 0 0 15px rgba(179, 136, 255, 0.1);
}

.gift-code-details {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    overflow: hidden;
}

.code-label {
    font-size: 11px;
    font-weight: 700;
    color: var(--text-secondary);
    letter-spacing: 0.8px;
}

/* Customized Lavender/Violet Scales for neon active gift code colors */
#code-val-1, #code-val-2, #code-val-3 {
    color: var(--accent-primary);
    text-shadow: 0 0 10px rgba(179, 136, 255, 0.45);
}

.code-value {
    font-family: monospace;
    font-size: 16px;
    word-break: break-all;
    text-align: left;
    font-weight: 700;
}

.btn-copy {
    color: var(--text-primary);
    padding: 10px 22px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 14px;
    backdrop-filter: var(--card-blur);
    -webkit-backdrop-filter: var(--card-blur);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
    z-index: 1;
    background: transparent;
    border: none;
}

.btn-copy::before {
    content: '';
    position: absolute;
    top: -150%;
    left: -50%;
    width: 200%;
    height: 400%;
    background: conic-gradient(from 0deg, transparent 40%, var(--accent-soft) 50%, transparent 60%);
    animation: rotateBorder 4s linear infinite;
    z-index: -2;
}

.btn-copy::after {
    content: '';
    position: absolute;
    inset: 1px;
    background: rgba(18, 15, 25, 0.85);
    border-radius: 30px;
    z-index: -1;
    transition: var(--transition-smooth);
}

.btn-copy:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 15px rgba(179, 136, 255, 0.3);
}

.btn-copy:hover::after {
    background: rgba(139, 92, 246, 0.15);
}

.btn-copy.copied::before {
    background: conic-gradient(from 0deg, transparent 40%, #34D399 50%, transparent 60%);
}

.btn-copy.copied::after {
    background: rgba(52, 211, 153, 0.15);
}

/* ==========================================================================
   24/7 Live Ticker (Marquee)
   ========================================================================== */

.live-ticker-bar {
    width: 100vw;
    background-color: rgba(18, 15, 25, 0.85);
    backdrop-filter: var(--card-blur);
    -webkit-backdrop-filter: var(--card-blur);
    border-top: 1px solid rgba(179, 136, 255, 0.15);
    border-bottom: 1px solid rgba(179, 136, 255, 0.15);
    padding: 14px 0;
    margin: 45px 0;
    overflow: hidden;
    position: relative;
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.3);
}

.ticker-wrapper {
    display: flex;
    white-space: nowrap;
    gap: 55px;
    animation: marqueeAnim 45s linear infinite;
    width: max-content;
}

.ticker-item {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: var(--text-primary);
}

.check-icon {
    width: 18px;
    height: 18px;
    color: var(--accent-primary);
    filter: drop-shadow(0 0 5px rgba(179, 136, 255, 0.6));
    flex-shrink: 0;
}

.ticker-name {
    font-weight: 700;
    color: #E0C3FC;
}

.ticker-win {
    color: #34D399; /* emerald green stands out beautifully for win details */
    font-weight: 800;
    text-shadow: 0 0 8px rgba(52, 211, 153, 0.3);
}

@keyframes marqueeAnim {
    0% { transform: translate3d(0, 0, 0); }
    100% { transform: translate3d(-50%, 0, 0); }
}

/* ==========================================================================
   Common Section Titles & Subheadings
   ========================================================================== */

.section-title {
    font-size: 46px;
    font-weight: 900;
    text-align: center;
    margin-bottom: 12px;
    letter-spacing: -0.8px;
    color: var(--text-primary);
    text-shadow: 0 0 20px rgba(139, 92, 246, 0.2);
}

.section-subtitle {
    font-size: 16px;
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: 50px;
}

/* ==========================================================================
   Game Library Section
   ========================================================================== */

.game-library-section {
    padding: 40px 0;
}

.game-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 28px;
}

.game-box {
    background: linear-gradient(135deg, rgba(58, 53, 74, 0.45), rgba(30, 26, 43, 0.75));
    backdrop-filter: var(--card-blur);
    -webkit-backdrop-filter: var(--card-blur);
    border: 1px solid var(--border-glow);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    transition: var(--transition-smooth);
}

.game-img-container {
    width: 100%;
    aspect-ratio: 1.2;
    overflow: hidden;
    position: relative;
    border-bottom: 1px solid rgba(179, 136, 255, 0.15);
}

.game-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.game-info {
    padding: 26px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.game-title {
    font-size: 21px;
    font-weight: 700;
    color: var(--text-primary);
    transition: var(--transition-smooth);
}

.game-desc {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.game-box:hover {
    transform: translateY(-8px) scale(1.02);
}

.game-box:hover .game-image {
    transform: scale(1.08);
}

/* Individual card hover neon glow colors, styled in harmony with the theme */
.game-wingo:hover {
    box-shadow: 0 20px 40px rgba(139, 92, 246, 0.3);
    border-color: #8B5CF6;
}
.game-wingo:hover .game-title { color: #B388FF; }

.game-aviator:hover {
    box-shadow: 0 20px 40px rgba(236, 72, 153, 0.25);
    border-color: #EC4899;
}
.game-aviator:hover .game-title { color: #F472B6; }

.game-dice:hover {
    box-shadow: 0 20px 40px rgba(192, 132, 252, 0.25);
    border-color: #C084FC;
}
.game-dice:hover .game-title { color: #E9D5FF; }

.game-casino:hover {
    box-shadow: 0 20px 40px rgba(52, 211, 153, 0.2);
    border-color: #34D399;
}
.game-casino:hover .game-title { color: #A7F3D0; }

/* ==========================================================================
   Steps Section (How to Register, Login & Play)
   ========================================================================== */

.steps-section {
    padding: 60px 0;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    margin-top: 20px;
}

.step-card {
    background: linear-gradient(135deg, rgba(58, 53, 74, 0.45), rgba(30, 26, 43, 0.75));
    backdrop-filter: var(--card-blur);
    -webkit-backdrop-filter: var(--card-blur);
    border: 1px solid var(--border-glow);
    border-radius: 24px;
    padding: 40px 30px;
    position: relative;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.35);
    transition: var(--transition-smooth);
}

.step-card:hover {
    border-color: var(--accent-primary);
    box-shadow: 0 15px 35px rgba(139, 92, 246, 0.15);
    transform: translateY(-5px);
}

.step-number {
    position: absolute;
    top: -22px;
    left: 30px;
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--accent-primary) 0%, var(--accent-secondary) 100%);
    color: #120F18;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 18px;
    box-shadow: 0 0 15px rgba(139, 92, 246, 0.5);
}

.step-title {
    font-size: 21px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.step-desc {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ==========================================================================
   Verified Guidelines Section
   ========================================================================== */

.verified-section {
    padding: 50px 0;
}

.verified-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 28px;
}

.verified-card {
    background: linear-gradient(135deg, rgba(58, 53, 74, 0.45), rgba(30, 26, 43, 0.75));
    backdrop-filter: var(--card-blur);
    -webkit-backdrop-filter: var(--card-blur);
    border: 1px solid var(--border-glow);
    border-radius: 24px;
    padding: 30px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.35);
    transition: var(--transition-smooth);
}

.verified-card:hover {
    border-color: var(--accent-primary);
    box-shadow: 0 15px 35px rgba(139, 92, 246, 0.15);
    transform: translateY(-5px);
}

.verified-title {
    font-size: 19px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.verified-desc {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.65;
}

/* ==========================================================================
   Reviews Section
   ========================================================================== */

.reviews-section {
    padding: 60px 0;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 28px;
}

.review-card {
    background: linear-gradient(135deg, rgba(58, 53, 74, 0.45), rgba(30, 26, 43, 0.75));
    backdrop-filter: var(--card-blur);
    -webkit-backdrop-filter: var(--card-blur);
    border: 1px solid var(--border-glow);
    border-radius: 24px;
    padding: 30px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.35);
    transition: var(--transition-smooth);
}

.review-card:hover {
    border-color: var(--accent-primary);
    box-shadow: 0 15px 35px rgba(139, 92, 246, 0.15);
    transform: translateY(-4px);
}

.stars-row {
    display: flex;
    gap: 4px;
    margin-bottom: 16px;
}

.star-icon {
    width: 18px;
    height: 18px;
    fill: var(--accent-primary);
    filter: drop-shadow(0 0 4px rgba(179, 136, 255, 0.6));
}

.review-name {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.review-text {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ==========================================================================
   FAQ Accordion Section
   ========================================================================== */

.faq-section {
    padding: 60px 0;
}

.faq-container {
    max-width: 850px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.faq-item {
    background: linear-gradient(135deg, rgba(58, 53, 74, 0.35), rgba(30, 26, 43, 0.65));
    backdrop-filter: var(--card-blur);
    -webkit-backdrop-filter: var(--card-blur);
    border: 1px solid var(--border-glow);
    border-radius: 18px;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.faq-item:hover {
    border-color: rgba(179, 136, 255, 0.4);
}

.faq-header {
    padding: 24px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    gap: 20px;
}

.faq-question {
    font-size: 17px;
    font-weight: 700;
    color: var(--text-primary);
}

.faq-toggle-icon {
    font-size: 24px;
    font-weight: 600;
    color: var(--accent-primary);
    user-select: none;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    line-height: 1;
}

.faq-answer-wrapper {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-answer {
    padding: 0 30px 24px 30px;
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.65;
}

.faq-item.active {
    background: linear-gradient(135deg, rgba(58, 53, 74, 0.45), rgba(30, 26, 43, 0.75));
    border-color: var(--accent-primary);
    box-shadow: 0 0 25px rgba(139, 92, 246, 0.15);
}

.faq-item.active .faq-toggle-icon {
    transform: rotate(45deg);
}

/* ==========================================================================
   Footer
   ========================================================================== */

.footer {
    border-top: 1px solid rgba(179, 136, 255, 0.15);
    padding: 60px 0 30px 0;
    text-align: center;
}

.footer-title {
    font-size: 26px;
    font-weight: 800;
    margin-bottom: 8px;
    color: var(--text-primary);
    text-shadow: 0 0 15px rgba(179, 136, 255, 0.3);
}

.footer-desc {
    font-size: 14.5px;
    color: var(--text-secondary);
    max-width: 620px;
    margin: 0 auto;
    line-height: 1.65;
}

/* ==========================================================================
   Bottom Sticky Floating Action Banner
   ========================================================================== */

.bottom-floater-bar {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 14px;
    z-index: 1000;
    background: rgba(30, 26, 43, 0.8);
    padding: 10px 16px;
    border-radius: 50px;
    backdrop-filter: var(--card-blur);
    -webkit-backdrop-filter: var(--card-blur);
    border: 1px solid var(--border-glow);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.55), var(--shadow-glow);
    width: max-content;
    max-width: 90vw;
}

.btn-floater-register {
    padding: 14px 28px;
    font-size: 14px;
    font-weight: 800;
    border-radius: 50px;
    white-space: nowrap;
}

.btn-floater-telegram {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    color: var(--accent-primary);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    z-index: 1;
    background: transparent;
    border: none;
}

.btn-floater-telegram::before {
    content: '';
    position: absolute;
    top: -150%;
    left: -50%;
    width: 200%;
    height: 400%;
    background: conic-gradient(from 0deg, transparent 40%, var(--accent-primary) 50%, transparent 60%);
    animation: rotateBorder 3s linear infinite;
    z-index: -2;
}

.btn-floater-telegram::after {
    content: '';
    position: absolute;
    inset: 1.5px;
    background: rgba(30, 26, 43, 0.95);
    border-radius: 50%;
    z-index: -1;
    transition: var(--transition-smooth);
}

.btn-floater-telegram:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 0 15px rgba(179, 136, 255, 0.4);
}

.btn-floater-telegram:hover::after {
    background: rgba(139, 92, 246, 0.25);
}

.telegram-icon {
    width: 22px;
    height: 22px;
}

/* ==========================================================================
   Responsive Adaptations
   ========================================================================== */

@media (max-width: 768px) {
    .main-title {
        font-size: 44px;
        letter-spacing: -1px;
    }
    
    .navbar {
        padding: 15px 24px;
    }
    
    .hero-section {
        padding: 60px 0;
    }
    
    .gift-card {
        padding: 30px 20px;
    }
    
    .gift-code-row {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
        padding: 22px 18px;
    }
    
    .gift-code-details {
        align-items: center;
    }
    
    .code-value {
        text-align: center;
    }
    
    .btn-copy {
        width: 100%;
    }
    
    .section-title {
        font-size: 34px;
    }
}

