@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --christmas-red: #DC143C;
    --christmas-green: #228B22;
    --christmas-gold: #FFD700;
    --christmas-white: #FFFFFF;
    --dark: #0A0E27;
    --text-primary: #FFFFFF;
    --text-secondary: #E0E0E0;
}

body {
    font-family: 'Inter', sans-serif;
    background: #0A0E27;
    background-image: url(images/background.jpg);
    background-position: center center;
    background-attachment: fixed;
    background-size: cover;
    color: var(--text-primary);
    line-height: 1.6;
    position: relative;
    overflow-x: hidden;
    min-height: 100vh;
}

/* Snowflakes Animation - Full Page Coverage */
.snowflakes {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 9999;
    pointer-events: none;
    overflow: hidden;
    background: transparent;
}

.snowflake {
    position: absolute;
    color: white;
    font-size: 1.5rem;
    animation: snowfall linear infinite;
    opacity: 0.9;
    text-shadow: 0 0 10px rgba(255, 255, 255, 1);
    will-change: transform;
    white-space: nowrap;
    user-select: none;
}

@keyframes snowfall {
    0% {
        transform: translateY(-100px) translateX(0) rotate(0deg);
        opacity: 1;
    }
    100% {
        transform: translateY(calc(100vh + 100px)) translateX(var(--drift, 100px)) rotate(360deg);
        opacity: 0;
    }
}

/* Additional snow layer for depth */
.snowflakes::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    pointer-events: none;
}

/* Christmas Tree */
.christmas-tree-container {
    position: fixed;
    right: 50px;
    bottom: 50px;
    z-index: 100;
    pointer-events: none;
}

.christmas-tree {
    position: relative;
    width: 200px;
    height: 300px;
    animation: treeSway 3s ease-in-out infinite;
}

@keyframes treeSway {
    0%, 100% { transform: rotate(-2deg); }
    50% { transform: rotate(2deg); }
}

.tree-top,
.tree-middle,
.tree-bottom {
    position: absolute;
    border-left: 50px solid transparent;
    border-right: 50px solid transparent;
}

.tree-top {
    top: 0;
    left: 50px;
    border-bottom: 80px solid #228B22;
    filter: drop-shadow(0 0 10px rgba(34, 139, 34, 0.8));
}

.tree-middle {
    top: 70px;
    left: 30px;
    border-bottom: 100px solid #2d9a2d;
    border-left-width: 70px;
    border-right-width: 70px;
    filter: drop-shadow(0 0 10px rgba(45, 154, 45, 0.8));
}

.tree-bottom {
    top: 150px;
    left: 10px;
    border-bottom: 120px solid #228B22;
    border-left-width: 90px;
    border-right-width: 90px;
    filter: drop-shadow(0 0 10px rgba(34, 139, 34, 0.8));
}

.tree-trunk {
    position: absolute;
    bottom: 0;
    left: 85px;
    width: 30px;
    height: 40px;
    background: #8B4513;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(139, 69, 19, 0.6);
}

.star {
    position: absolute;
    top: -20px;
    left: 85px;
    font-size: 2.5rem;
    color: #FFD700;
    filter: drop-shadow(0 0 15px rgba(255, 215, 0, 1));
    animation: starTwinkle 1.5s ease-in-out infinite;
    z-index: 10;
}

@keyframes starTwinkle {
    0%, 100% { 
        transform: scale(1) rotate(0deg);
        filter: drop-shadow(0 0 15px rgba(255, 215, 0, 1));
    }
    50% { 
        transform: scale(1.2) rotate(180deg);
        filter: drop-shadow(0 0 25px rgba(255, 215, 0, 1));
    }
}

.ornament {
    position: absolute;
    font-size: 1.2rem;
    animation: ornamentSwing 2s ease-in-out infinite;
    filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.8));
    z-index: 5;
}

.ornament-1 {
    top: 30px;
    left: 60px;
    animation-delay: 0s;
}

.ornament-2 {
    top: 50px;
    left: 130px;
    animation-delay: 0.3s;
}

.ornament-3 {
    top: 100px;
    left: 80px;
    animation-delay: 0.6s;
}

.ornament-4 {
    top: 120px;
    left: 140px;
    animation-delay: 0.9s;
}

.ornament-5 {
    top: 180px;
    left: 50px;
    animation-delay: 1.2s;
}

.ornament-6 {
    top: 200px;
    left: 120px;
    animation-delay: 1.5s;
}

.ornament-7 {
    top: 220px;
    left: 90px;
    animation-delay: 1.8s;
}

@keyframes ornamentSwing {
    0%, 100% { transform: translateY(0) rotate(-5deg); }
    50% { transform: translateY(-5px) rotate(5deg); }
}

/* Christmas Lights */
.christmas-lights {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    z-index: 1001;
    background: repeating-linear-gradient(
        90deg,
        var(--christmas-red) 0px,
        var(--christmas-red) 20px,
        var(--christmas-green) 20px,
        var(--christmas-green) 40px,
        var(--christmas-gold) 40px,
        var(--christmas-gold) 60px
    );
    animation: lights 2s linear infinite;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.8);
}

@keyframes lights {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 10;
}

/* Navbar */
.navbar {
    background: #0A0E27;
    padding: 20px 0;
    position: sticky;
    top: 5px;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(220, 20, 60, 0.5);
    border-bottom: 3px solid var(--christmas-red);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 50px;
    filter: drop-shadow(0 0 10px var(--christmas-gold));
}

.nav-links {
    display: flex;
    gap: 30px;
    list-style: none;
}

.nav-links a {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--christmas-red);
    transition: width 0.3s;
}

.nav-links a:hover {
    color: var(--christmas-gold);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-buttons {
    display: flex;
    gap: 10px;
}

.btn {
    padding: 12px 25px;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s;
    display: inline-block;
    cursor: pointer;
}

.btn-secondary {
    background: var(--christmas-green);
    color: var(--text-primary);
    border: 2px solid var(--christmas-green);
}

.btn-secondary:hover {
    background: #1a6b1a;
    border-color: #1a6b1a;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(34, 139, 34, 0.6);
}

.btn-primary {
    background: var(--christmas-red);
    color: var(--text-primary);
    border: 2px solid var(--christmas-red);
    box-shadow: 0 4px 15px rgba(220, 20, 60, 0.6);
}

.btn-primary:hover {
    background: #B22222;
    border-color: #B22222;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(220, 20, 60, 0.8);
}

.btn-large {
    padding: 18px 45px;
    font-size: 1.3rem;
    background: linear-gradient(135deg, var(--christmas-red), var(--christmas-gold));
    color: var(--text-primary);
    border: none;
    box-shadow: 0 8px 25px rgba(220, 20, 60, 0.7);
    font-weight: 800;
}

.btn-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(220, 20, 60, 0.9);
}

/* Hero Section 1 */
.hero {
    padding: 100px 0;
    text-align: center;
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #0A0E27 0%, #1a1f3a 100%);
}

.hero-badge {
    display: inline-block;
    padding: 12px 30px;
    background: linear-gradient(135deg, var(--christmas-red), var(--christmas-green));
    border-radius: 50px;
    color: var(--text-primary);
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 30px;
    box-shadow: 0 5px 20px rgba(220, 20, 60, 0.6);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.hero-content h1 {
    font-size: 4.5rem;
    font-weight: 900;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

.text-highlight {
    background: linear-gradient(135deg, var(--christmas-red), var(--christmas-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-content p {
    font-size: 1.3rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

.hero-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.hero-stats {
    display: flex;
    gap: 60px;
    padding: 40px 0;
    border-top: 2px solid var(--christmas-red);
    border-bottom: 2px solid var(--christmas-green);
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--christmas-red), var(--christmas-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Decorations */
.decorations {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 2;
}

.decoration {
    position: absolute;
    font-size: 3rem;
    animation: float 6s ease-in-out infinite;
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.5));
}

.decoration-1 {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.decoration-2 {
    top: 20%;
    right: 15%;
    animation-delay: 1s;
}

.decoration-3 {
    bottom: 30%;
    left: 20%;
    animation-delay: 2s;
}

.decoration-4 {
    bottom: 20%;
    right: 10%;
    animation-delay: 3s;
}

.decoration-5 {
    top: 50%;
    left: 5%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(10deg); }
}

/* Section 1.5: Login & Register Presents - NEW DESIGN */
.login-register-presents {
    padding: 120px 0;
    background: linear-gradient(180deg, #0A0E27 0%, #1a1f3a 50%, #0A0E27 100%);
    position: relative;
    z-index: 10;
    overflow: visible;
    min-height: 600px;
    width: 100%;
}

.login-register-presents .container {
    overflow: visible;
    width: 100%;
    max-width: 1200px;
}

.login-register-presents::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 215, 0, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(220, 20, 60, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.presents-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

/* Present Card - New Clean Design */
.present-card {
    background: linear-gradient(135deg, rgba(10, 14, 39, 0.95), rgba(26, 31, 58, 0.95));
    border: 3px solid var(--christmas-gold);
    border-radius: 20px;
    padding: 0;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.5), 
                0 0 30px rgba(255, 215, 0, 0.3);
    transition: all 0.4s ease;
    position: relative;
}

.present-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6), 
                0 0 40px rgba(255, 215, 0, 0.5);
}

.present-card.present-login {
    border-color: var(--christmas-red);
}

.present-card.present-register {
    border-color: var(--christmas-green);
}

/* Present Header */
.present-header {
    background: linear-gradient(135deg, var(--christmas-red), #B22222);
    padding: 40px 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.present-register .present-header {
    background: linear-gradient(135deg, var(--christmas-green), #1a6b1a);
}

.present-header::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.2) 0%, transparent 70%);
    animation: rotate 10s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.present-icon-wrapper {
    position: relative;
    z-index: 2;
    margin-bottom: 20px;
}

.present-icon {
    font-size: 4rem;
    filter: drop-shadow(0 0 20px rgba(255, 215, 0, 1));
    animation: iconPulse 2s ease-in-out infinite;
    display: inline-block;
}

@keyframes iconPulse {
    0%, 100% { 
        transform: scale(1);
        filter: drop-shadow(0 0 20px rgba(255, 215, 0, 1));
    }
    50% { 
        transform: scale(1.1);
        filter: drop-shadow(0 0 30px rgba(255, 215, 0, 1));
    }
}

.present-header h3 {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--text-primary);
    margin: 0 0 10px 0;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.8);
    position: relative;
    z-index: 2;
}

.present-subtitle {
    font-size: 1.1rem;
    color: var(--text-primary);
    opacity: 0.9;
    margin: 0;
    position: relative;
    z-index: 2;
    font-weight: 600;
}

/* Present Benefits */
.present-benefits {
    padding: 40px 30px;
    background: rgba(10, 14, 39, 0.8);
}

.benefit-header {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--christmas-gold);
}

.celebration-icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 10px;
    animation: celebrate 1.5s ease-in-out infinite;
}

@keyframes celebrate {
    0%, 100% { transform: scale(1) rotate(0deg); }
    25% { transform: scale(1.2) rotate(-15deg); }
    75% { transform: scale(1.2) rotate(15deg); }
}

.benefit-header h4 {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--text-primary);
    text-shadow: 0 0 15px rgba(255, 215, 0, 0.8);
    margin: 0;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.benefit-item {
    background: rgba(0, 0, 0, 0.4);
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 15px;
    padding: 20px;
    display: flex;
    gap: 15px;
    align-items: flex-start;
    transition: all 0.3s ease;
}

.benefit-item:hover {
    background: rgba(0, 0, 0, 0.6);
    border-color: var(--christmas-gold);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.3);
}

.benefit-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.8));
}

.benefit-content {
    flex: 1;
}

.benefit-content h5 {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--text-primary);
    margin: 0 0 8px 0;
}

.benefit-content p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.5;
}

.present-action-btn {
    display: block;
    width: 100%;
    padding: 18px 30px;
    font-size: 1.2rem;
    font-weight: 800;
    text-align: center;
    text-decoration: none;
    border-radius: 50px;
    background: linear-gradient(135deg, var(--christmas-red), var(--christmas-gold));
    color: var(--text-primary);
    border: 3px solid var(--christmas-gold);
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(220, 20, 60, 0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.present-register .present-action-btn {
    background: linear-gradient(135deg, var(--christmas-green), var(--christmas-gold));
    box-shadow: 0 8px 25px rgba(34, 139, 34, 0.6);
}

.present-action-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.8);
}

/* Gift Wrapper */
.gift-wrapper {
    position: relative;
    perspective: 1200px;
    cursor: pointer;
    min-height: 500px;
    width: 100%;
    height: auto;
}

.gift-wrapper.opened {
    min-height: 700px;
}

.gift-wrapper.opened .gift-box {
    transform: rotateY(180deg);
    opacity: 0;
}

.gift-wrapper.opened {
    min-height: auto;
}

.gift-wrapper.opened .gift-reveal {
    opacity: 1;
    transform: rotateY(0deg);
    pointer-events: all;
    position: absolute;
    height: auto;
    min-height: 650px;
    padding-bottom: 50px;
}

/* Gift Box */
.gift-box {
    position: relative;
    width: 100%;
    height: 450px;
    min-height: 450px;
    transform-style: preserve-3d;
    transition: transform 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    animation: giftFloat 4s ease-in-out infinite;
    overflow: visible;
}

.gift-wrapper:nth-child(2) .gift-box {
    animation-delay: 0.5s;
}

@keyframes giftFloat {
    0%, 100% { transform: translateY(0) rotateX(0deg); }
    50% { transform: translateY(-20px) rotateX(5deg); }
}

.gift-wrapper:hover .gift-box {
    transform: translateY(-10px) scale(1.02);
    animation-play-state: paused;
}

/* Gift Top (Lid) */
.gift-top {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 45%;
    background: var(--christmas-red);
    border-radius: 15px 15px 0 0;
    border: 4px solid var(--christmas-gold);
    border-bottom: none;
    box-shadow: 
        0 -10px 30px rgba(220, 20, 60, 0.5),
        inset 0 0 20px rgba(255, 215, 0, 0.2);
    transform-origin: bottom center;
    transition: transform 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    z-index: 3;
}

.gift-wrapper[data-gift="register"] .gift-top {
    background: var(--christmas-green);
    box-shadow: 
        0 -10px 30px rgba(34, 139, 34, 0.5),
        inset 0 0 20px rgba(255, 215, 0, 0.2);
}

.gift-wrapper.opened .gift-top {
    transform: rotateX(-140deg);
}

/* Gift Body */
.gift-body {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 55%;
    background: var(--christmas-red);
    border-radius: 0 0 15px 15px;
    border: 4px solid var(--christmas-gold);
    border-top: none;
    box-shadow: 
        0 15px 40px rgba(220, 20, 60, 0.6),
        inset 0 0 30px rgba(255, 215, 0, 0.15);
    z-index: 2;
}

.gift-wrapper[data-gift="register"] .gift-body {
    background: var(--christmas-green);
    box-shadow: 
        0 15px 40px rgba(34, 139, 34, 0.6),
        inset 0 0 30px rgba(255, 215, 0, 0.15);
}

/* Gift Bow */
.gift-bow {
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    animation: bowFloat 2s ease-in-out infinite;
}

@keyframes bowFloat {
    0%, 100% { transform: translateX(-50%) translateY(0) rotate(0deg); }
    50% { transform: translateX(-50%) translateY(-8px) rotate(5deg); }
}

.bow-center {
    font-size: 2.5rem;
    filter: drop-shadow(0 0 15px rgba(255, 215, 0, 1));
    position: relative;
    z-index: 2;
}

.bow-left,
.bow-right {
    position: absolute;
    top: 50%;
    width: 30px;
    height: 30px;
    background: var(--christmas-gold);
    border-radius: 50% 50% 50% 0;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.8);
}

.bow-left {
    left: -20px;
    transform: translateY(-50%) rotate(-45deg);
}

.bow-right {
    right: -20px;
    transform: translateY(-50%) rotate(45deg);
}

/* Gift Ribbons */
.gift-ribbon-vertical {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 10px;
    height: 100%;
    background: linear-gradient(to bottom,
        var(--christmas-gold) 0%,
        var(--christmas-gold) 15%,
        transparent 15%,
        transparent 85%,
        var(--christmas-gold) 85%,
        var(--christmas-gold) 100%
    );
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.8);
    z-index: 1;
}

.gift-ribbon-horizontal {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 100%;
    height: 10px;
    background: linear-gradient(to right,
        transparent 0%,
        transparent 15%,
        var(--christmas-gold) 15%,
        var(--christmas-gold) 85%,
        transparent 85%,
        transparent 100%
    );
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.8);
    z-index: 1;
}

/* Gift Content */
.gift-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 4;
    width: 90%;
}

.gift-icon {
    font-size: 5rem;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 20px rgba(255, 215, 0, 1));
    animation: iconGlow 2s ease-in-out infinite;
}

@keyframes iconGlow {
    0%, 100% { 
        transform: scale(1);
        filter: drop-shadow(0 0 20px rgba(255, 215, 0, 1));
    }
    50% { 
        transform: scale(1.15);
        filter: drop-shadow(0 0 30px rgba(255, 215, 0, 1));
    }
}

.gift-content h3 {
    font-size: 2.2rem;
    font-weight: 900;
    margin-bottom: 15px;
    color: var(--text-primary);
    text-shadow: 0 0 25px rgba(255, 215, 0, 0.8);
}

.gift-content p {
    font-size: 1.2rem;
    color: var(--text-primary);
    font-weight: 600;
    opacity: 0.95;
}

.gift-sparkles {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 15px;
}

.gift-sparkles span {
    font-size: 1.5rem;
    animation: sparkle 1.5s ease-in-out infinite;
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.8));
}

.gift-sparkles span:nth-child(1) { animation-delay: 0s; }
.gift-sparkles span:nth-child(2) { animation-delay: 0.3s; }
.gift-sparkles span:nth-child(3) { animation-delay: 0.6s; }

@keyframes sparkle {
    0%, 100% { 
        transform: scale(1) rotate(0deg);
        opacity: 0.7;
    }
    50% { 
        transform: scale(1.3) rotate(180deg);
        opacity: 1;
    }
}

/* Gift Reveal (Content when opened) */
.gift-reveal {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    min-height: 500px;
    max-height: none;
    background: linear-gradient(135deg, rgba(10, 14, 39, 0.98), rgba(26, 31, 58, 0.98));
    border-radius: 15px;
    border: 4px solid var(--christmas-gold);
    padding: 40px;
    opacity: 0;
    transform: rotateY(-180deg);
    transform-style: preserve-3d;
    transition: opacity 0.8s ease 0.4s, transform 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55) 0.4s;
    pointer-events: none;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8), 
                0 0 40px rgba(255, 215, 0, 0.4);
    backface-visibility: hidden;
    overflow: visible;
    z-index: 20;
}

.reveal-content {
    min-height: 100%;
    display: flex;
    flex-direction: column;
    width: 100%;
}

.reveal-header {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 3px solid var(--christmas-gold);
}

.reveal-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 10px;
    animation: celebrate 1s ease-in-out infinite;
}

@keyframes celebrate {
    0%, 100% { transform: scale(1) rotate(0deg); }
    25% { transform: scale(1.2) rotate(-10deg); }
    75% { transform: scale(1.2) rotate(10deg); }
}

.reveal-header h4 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--text-primary);
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.8);
    margin: 0;
}

.reveal-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 30px;
    flex: 1;
    min-height: 300px;
    width: 100%;
}

.reveal-card {
    background: rgba(0, 0, 0, 0.4);
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    transition: all 0.3s ease;
    animation: cardReveal 0.6s ease forwards;
    opacity: 0;
    min-height: 150px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.gift-wrapper.opened .reveal-card:nth-child(1) { animation-delay: 0.1s; }
.gift-wrapper.opened .reveal-card:nth-child(2) { animation-delay: 0.2s; }
.gift-wrapper.opened .reveal-card:nth-child(3) { animation-delay: 0.3s; }
.gift-wrapper.opened .reveal-card:nth-child(4) { animation-delay: 0.4s; }

@keyframes cardReveal {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.reveal-card:hover {
    background: rgba(0, 0, 0, 0.6);
    border-color: var(--christmas-gold);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.4);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 15px;
    filter: drop-shadow(0 0 15px rgba(255, 215, 0, 0.8));
}

.reveal-card h5 {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.reveal-card p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.5;
}

.reveal-btn {
    display: block;
    width: 100%;
    padding: 18px 30px;
    font-size: 1.3rem;
    font-weight: 800;
    text-align: center;
    text-decoration: none;
    border-radius: 50px;
    background: linear-gradient(135deg, var(--christmas-red), var(--christmas-gold));
    color: var(--text-primary);
    border: 3px solid var(--christmas-gold);
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(220, 20, 60, 0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.gift-wrapper[data-gift="register"] .reveal-btn {
    background: linear-gradient(135deg, var(--christmas-green), var(--christmas-gold));
    box-shadow: 0 8px 25px rgba(34, 139, 34, 0.6);
}

.reveal-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.8);
}

/* Section 2: About */
.about {
    padding: 100px 0;
    position: relative;
    z-index: 10;
    background: #1a1f3a;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(220, 20, 60, 0.5);
    border: 3px solid var(--christmas-gold);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s;
}

.about-image:hover img {
    transform: scale(1.05);
}

.about-content h2 {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 20px;
    color: var(--text-primary);
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

.about-content p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    line-height: 1.8;
}

.features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.feature {
    text-align: center;
    padding: 30px;
    background: var(--christmas-red);
    border-radius: 15px;
    border: 3px solid var(--christmas-gold);
    transition: all 0.3s;
    box-shadow: 0 5px 20px rgba(220, 20, 60, 0.4);
}

.feature:hover {
    transform: translateY(-10px);
    background: var(--christmas-green);
    box-shadow: 0 15px 40px rgba(34, 139, 34, 0.6);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.feature h4 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: var(--text-primary);
    font-weight: 700;
}

.feature p {
    font-size: 1rem;
    color: var(--text-primary);
    margin: 0;
}

/* Section 3: Bonus */
.bonus {
    padding: 100px 0;
    background: #0A0E27;
    position: relative;
    z-index: 10;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    padding: 40px 0;
}

.section-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--christmas-gold), transparent);
    border-radius: 2px;
}

.section-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--christmas-gold), transparent);
    border-radius: 2px;
}

.section-header h2 {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 20px;
    color: var(--text-primary);
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.6), 0 0 40px rgba(255, 215, 0, 0.3);
    position: relative;
    padding: 20px 0;
}

.section-header h2::before {
    content: '🦌';
    position: absolute;
    left: -60px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2rem;
    opacity: 0.6;
    animation: badgePulse 2s ease-in-out infinite;
}

.section-header h2::after {
    content: '🦌';
    position: absolute;
    right: -60px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2rem;
    opacity: 0.6;
    animation: badgePulse 2s ease-in-out infinite;
}

.section-header p {
    font-size: 1.3rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

.bonus-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.bonus-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.bonus-card {
    padding: 30px;
    background: var(--christmas-red);
    border-radius: 15px;
    border: 3px solid var(--christmas-gold);
    transition: all 0.3s;
    box-shadow: 0 8px 25px rgba(220, 20, 60, 0.5);
}

.bonus-card:hover {
    transform: translateX(10px) translateY(-5px);
    background: var(--christmas-green);
    box-shadow: 0 15px 40px rgba(34, 139, 34, 0.6);
}

.bonus-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.bonus-card h4 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--text-primary);
    font-weight: 800;
}

.bonus-card p {
    font-size: 1rem;
    color: var(--text-primary);
    line-height: 1.6;
    margin-bottom: 15px;
}

.bonus-amount {
    display: inline-block;
    padding: 8px 20px;
    background: var(--christmas-gold);
    color: #0A0E27;
    border-radius: 25px;
    font-weight: 800;
    font-size: 1rem;
}

.bonus-images {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.bonus-carousel {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(220, 20, 60, 0.5);
    border: 3px solid var(--christmas-red);
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.carousel-track img {
    width: 100%;
    height: auto;
    display: block;
}

.bonus-banner {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(34, 139, 34, 0.5);
    border: 3px solid var(--christmas-green);
}

.bonus-banner img {
    width: 100%;
    height: auto;
    display: block;
}

/* Section 4: Games */
.games {
    padding: 100px 0;
    background: #1a1f3a;
    position: relative;
    z-index: 10;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.game-card {
    background: var(--christmas-red);
    border-radius: 15px;
    overflow: hidden;
    border: 3px solid var(--christmas-gold);
    transition: all 0.3s;
    text-align: center;
    position: relative;
    box-shadow: 0 8px 25px rgba(220, 20, 60, 0.5);
}

.game-card:hover {
    transform: translateY(-15px);
    background: var(--christmas-green);
    box-shadow: 0 20px 50px rgba(34, 139, 34, 0.6);
}

.game-ribbon {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 2.5rem;
    z-index: 5;
    filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.8));
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.game-card img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s;
}

.game-card:hover img {
    transform: scale(1.1);
}

.game-info {
    padding: 25px;
}

.game-card h4 {
    font-size: 1.5rem;
    color: var(--text-primary);
    margin: 0 0 10px 0;
    font-weight: 800;
}

.game-card p {
    color: var(--text-primary);
    font-size: 1rem;
    margin-bottom: 15px;
    line-height: 1.6;
}

.play-btn {
    display: inline-block;
    padding: 12px 30px;
    background: var(--christmas-gold);
    color: #0A0E27;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 800;
    font-size: 1rem;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.play-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6);
}

/* Section 5: Why Choose */
.why-choose {
    padding: 100px 0;
    background: #0A0E27;
    position: relative;
    z-index: 10;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.feature-box {
    text-align: center;
    padding: 40px 30px;
    background: var(--christmas-green);
    border-radius: 15px;
    border: 3px solid var(--christmas-gold);
    transition: all 0.3s;
    box-shadow: 0 8px 25px rgba(34, 139, 34, 0.5);
}

.feature-box:hover {
    transform: translateY(-15px);
    background: var(--christmas-red);
    box-shadow: 0 20px 50px rgba(220, 20, 60, 0.6);
}

.feature-box .feature-icon {
    font-size: 4rem;
    margin-bottom: 20px;
}

.feature-box h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--text-primary);
    font-weight: 800;
}

.feature-box p {
    font-size: 1rem;
    color: var(--text-primary);
    line-height: 1.6;
}

/* Section 6: Payments */
.payments {
    padding: 100px 0;
    background: #1a1f3a;
    position: relative;
    z-index: 10;
}

.payment-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.payment-item {
    text-align: center;
    padding: 40px 30px;
    background: var(--christmas-red);
    border-radius: 15px;
    border: 3px solid var(--christmas-gold);
    transition: all 0.3s;
    box-shadow: 0 8px 25px rgba(220, 20, 60, 0.5);
}

.payment-item:hover {
    transform: translateY(-15px);
    background: var(--christmas-green);
    box-shadow: 0 20px 50px rgba(34, 139, 34, 0.6);
}

.payment-icon {
    font-size: 4rem;
    margin-bottom: 20px;
}

.payment-item h4 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: var(--text-primary);
    font-weight: 800;
}

.payment-item p {
    font-size: 1rem;
    color: var(--text-primary);
    line-height: 1.6;
}

/* Section 7: Mobile */
.mobile {
    padding: 100px 0;
    background: #0A0E27;
    position: relative;
    z-index: 10;
}

.mobile-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.mobile-content h2 {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 20px;
    color: var(--text-primary);
    text-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
}

.mobile-content p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 30px;
    line-height: 1.8;
}

.mobile-features {
    list-style: none;
    margin-bottom: 30px;
}

.mobile-features li {
    padding: 12px 0;
    font-size: 1.1rem;
    color: var(--text-primary);
    font-weight: 600;
}

.mobile-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.phone-mockup {
    width: 300px;
    height: 600px;
    background: var(--christmas-red);
    border-radius: 40px;
    padding: 20px;
    border: 5px solid var(--christmas-gold);
    box-shadow: 0 20px 60px rgba(255, 215, 0, 0.5);
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: #0A0E27;
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.screen-content {
    font-size: 5rem;
}

/* Section 8: Testimonials */
.testimonials {
    padding: 100px 0;
    background: #1a1f3a;
    position: relative;
    z-index: 10;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    padding: 35px;
    background: var(--christmas-green);
    border-radius: 15px;
    border: 3px solid var(--christmas-gold);
    transition: all 0.3s;
    box-shadow: 0 8px 25px rgba(34, 139, 34, 0.5);
}

.testimonial-card:hover {
    transform: translateY(-15px);
    background: var(--christmas-red);
    box-shadow: 0 20px 50px rgba(220, 20, 60, 0.6);
}

.testimonial-rating {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--christmas-gold);
}

.testimonial-card p {
    font-size: 1.1rem;
    color: var(--text-primary);
    line-height: 1.8;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.testimonial-author strong {
    color: var(--text-primary);
    font-size: 1.1rem;
    font-weight: 800;
}

.testimonial-author span {
    color: var(--text-primary);
    font-size: 0.9rem;
}

/* Section 9: VIP */
.vip {
    padding: 100px 0;
    background: #0A0E27;
    position: relative;
    z-index: 10;
}

.vip-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.vip-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.vip-badge {
    font-size: 12rem;
    filter: drop-shadow(0 0 30px rgba(255, 215, 0, 0.8));
    animation: pulse 2s ease-in-out infinite;
}

.vip-content h2 {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 20px;
    color: var(--text-primary);
    text-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
}

.vip-content p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 30px;
    line-height: 1.8;
}

.vip-benefits {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}

.vip-benefit {
    display: flex;
    gap: 20px;
    padding: 25px;
    background: var(--christmas-red);
    border-radius: 15px;
    border: 3px solid var(--christmas-gold);
    transition: all 0.3s;
    box-shadow: 0 5px 20px rgba(220, 20, 60, 0.4);
}

.vip-benefit:hover {
    border-color: var(--christmas-gold);
    transform: translateX(10px);
    background: var(--christmas-green);
    box-shadow: 0 10px 30px rgba(34, 139, 34, 0.5);
}

.benefit-icon {
    font-size: 3rem;
    flex-shrink: 0;
}

.vip-benefit h4 {
    font-size: 1.3rem;
    margin-bottom: 5px;
    color: var(--text-primary);
    font-weight: 800;
}

.vip-benefit p {
    font-size: 1rem;
    color: var(--text-primary);
    margin: 0;
}

/* Section 10: FAQ */
.faq {
    padding: 100px 0;
    background: #1a1f3a;
    position: relative;
    z-index: 10;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--christmas-red);
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 20px;
    border: 3px solid var(--christmas-gold);
    transition: all 0.3s;
    cursor: pointer;
    box-shadow: 0 5px 20px rgba(220, 20, 60, 0.4);
}

.faq-item:hover {
    background: var(--christmas-green);
    box-shadow: 0 10px 30px rgba(34, 139, 34, 0.5);
}

.faq-item.active {
    background: var(--christmas-green);
    box-shadow: 0 15px 40px rgba(34, 139, 34, 0.6);
}

.faq-item h4 {
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 10px;
    color: var(--text-primary);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-icon {
    font-size: 1.5rem;
    color: var(--christmas-gold);
    transition: transform 0.3s;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid var(--christmas-gold);
    border-radius: 50%;
    flex-shrink: 0;
    background: #0A0E27;
}

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

.faq-item p {
    font-size: 1.1rem;
    color: var(--text-primary);
    line-height: 1.8;
    margin: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, margin 0.4s ease;
    opacity: 0;
}

.faq-item.active p {
    max-height: 500px;
    margin-top: 15px;
    opacity: 1;
}

/* Page Hero (for all pages) */
.page-hero {
    padding: 120px 0 80px;
    text-align: center;
    background: linear-gradient(135deg, #0A0E27 0%, #1a1f3a 100%);
    position: relative;
    z-index: 10;
}

.page-hero h1 {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 15px;
    color: var(--text-primary);
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.6);
}

.page-hero p {
    font-size: 1.3rem;
    color: var(--text-secondary);
}

/* Modern Games Page Styles - Reindeer Theme */
.reindeer-hero .hero-stats-mini {
    margin-top: 40px;
}

.hero-stats-mini {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 40px;
}

.stat-mini {
    text-align: center;
}

.stat-number-mini {
    display: block;
    font-size: 2.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--christmas-red), var(--christmas-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

.stat-label-mini {
    display: block;
    font-size: 0.9rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.category-tabs-wrapper {
    padding: 40px 0;
    position: relative;
    z-index: 1;
}

.reindeer-sleigh-tabs {
    position: relative;
    padding: 40px 0;
    margin-bottom: 50px;
}

.category-header {
    text-align: center;
    margin-bottom: 50px;
    padding: 30px 0;
    position: relative;
}

.category-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--christmas-gold), transparent);
    border-radius: 2px;
}

.category-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--christmas-gold), transparent);
    border-radius: 2px;
}

.category-header h2 {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 15px;
    color: var(--text-primary);
    text-shadow: 0 0 15px rgba(255, 215, 0, 0.5), 0 0 30px rgba(255, 215, 0, 0.2);
    position: relative;
}

.category-header p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

.games-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.game-card-modern {
    background: linear-gradient(135deg, rgba(10, 14, 39, 0.95), rgba(26, 31, 58, 0.95));
    border: 3px solid rgba(255, 215, 0, 0.4);
    border-radius: 25px;
    overflow: hidden;
    transition: all 0.4s ease;
    position: relative;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4), inset 0 0 30px rgba(255, 215, 0, 0.03);
    backdrop-filter: blur(10px);
}

.reindeer-game-card {
    background: linear-gradient(135deg, rgba(139, 69, 19, 0.2) 0%, rgba(101, 67, 33, 0.2) 100%);
    border: 3px solid rgba(255, 215, 0, 0.6);
}

.reindeer-game-card::before {
    content: '🦌';
    position: absolute;
    top: -15px;
    right: -15px;
    font-size: 4rem;
    opacity: 0.2;
    z-index: 0;
    animation: reindeerFloat 3s ease-in-out infinite;
}

.reindeer-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    font-size: 2.5rem;
    z-index: 5;
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.8));
    animation: badgePulse 2s ease-in-out infinite;
}

.game-card-modern:hover {
    transform: translateY(-10px);
    border-color: var(--christmas-gold);
    box-shadow: 0 20px 50px rgba(255, 215, 0, 0.4);
}

.game-card-image {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.game-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.game-card-modern:hover .game-card-image img {
    transform: scale(1.1);
}

.game-overlay-modern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
    opacity: 0;
    transition: opacity 0.3s;
}

.game-card-modern:hover .game-overlay-modern {
    opacity: 1;
}

.rtp-badge-modern {
    background: linear-gradient(135deg, var(--christmas-gold), #FFA500);
    color: #0A0E27;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 800;
    font-size: 0.9rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.play-btn-modern {
    padding: 12px 30px;
    background: linear-gradient(135deg, var(--christmas-red), #8B0000);
    color: var(--text-primary);
    text-decoration: none;
    border-radius: 25px;
    font-weight: 800;
    font-size: 1rem;
    transition: all 0.3s;
    border: 2px solid var(--christmas-gold);
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.3);
}

.play-btn-modern:hover {
    background: linear-gradient(135deg, var(--christmas-gold), #FFA500);
    color: #0A0E27;
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(255, 215, 0, 0.6);
}

.game-card-info {
    padding: 25px;
}

.game-card-info h3 {
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.game-card-info p {
    color: var(--text-secondary);
    margin-bottom: 15px;
    line-height: 1.6;
    font-size: 0.95rem;
}

.game-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.game-tags span {
    background: rgba(255, 215, 0, 0.15);
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.85rem;
    color: var(--text-primary);
    border: 1px solid rgba(255, 215, 0, 0.3);
}

/* Popular Games Section */
.popular-games-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #0A0E27 0%, #1a1f3a 50%, #0A0E27 100%);
    position: relative;
    z-index: 10;
    overflow: hidden;
}

.popular-games-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 50% 50%, rgba(255, 215, 0, 0.08) 0%, transparent 60%),
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 40px,
            rgba(220, 20, 60, 0.02) 40px,
            rgba(220, 20, 60, 0.02) 80px
        );
    pointer-events: none;
    z-index: 0;
}

.popular-games-section::after {
    content: '🔥';
    position: absolute;
    top: 5%;
    left: 10%;
    font-size: 6rem;
    opacity: 0.06;
    z-index: 0;
    animation: float 4s ease-in-out infinite;
}

.popular-games-section .container {
    position: relative;
    z-index: 1;
}

.popular-games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.popular-game-card {
    background: linear-gradient(135deg, rgba(220, 20, 60, 0.25), rgba(139, 0, 0, 0.25));
    border: 3px solid var(--christmas-gold);
    border-radius: 25px;
    padding: 35px 30px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4), inset 0 0 30px rgba(255, 215, 0, 0.05);
    backdrop-filter: blur(10px);
}

.popular-game-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(255, 215, 0, 0.4);
    border-color: var(--christmas-gold);
}

.popular-rank {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--christmas-gold);
    color: #0A0E27;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 1.2rem;
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.5);
}

.popular-game-content h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.popular-game-content p {
    color: var(--text-secondary);
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.popular-stats {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
    font-size: 0.9rem;
    color: var(--text-primary);
}

/* Latest Games Section */
.latest-games-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a1f3a 0%, #0A0E27 50%, #1a1f3a 100%);
    position: relative;
    z-index: 10;
    overflow: hidden;
}

.latest-games-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(220, 20, 60, 0.08) 0%, transparent 50%),
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 50px,
            rgba(255, 215, 0, 0.02) 50px,
            rgba(255, 215, 0, 0.02) 100px
        );
    pointer-events: none;
    z-index: 0;
}

.latest-games-section .container {
    position: relative;
    z-index: 1;
}

.latest-games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.latest-game-card {
    background: linear-gradient(135deg, rgba(139, 69, 19, 0.25) 0%, rgba(101, 67, 33, 0.25) 100%);
    border: 3px solid rgba(255, 215, 0, 0.6);
    border-radius: 25px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    transition: all 0.4s ease;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4), inset 0 0 30px rgba(255, 215, 0, 0.05);
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.latest-game-card::before {
    content: '🦌';
    position: absolute;
    top: -20px;
    right: -20px;
    font-size: 5rem;
    opacity: 0.15;
    z-index: 0;
    animation: reindeerFloat 3s ease-in-out infinite;
}

.latest-game-card:hover {
    transform: translateY(-10px);
    border-color: var(--christmas-gold);
    box-shadow: 0 20px 50px rgba(255, 215, 0, 0.4);
}

.new-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, var(--christmas-red), #8B0000);
    color: var(--text-primary);
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 900;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid var(--christmas-gold);
    box-shadow: 0 5px 15px rgba(220, 20, 60, 0.5);
    z-index: 5;
    animation: pulse 2s ease-in-out infinite;
}

.reindeer-badge-small {
    position: absolute;
    top: 15px;
    left: 15px;
    font-size: 2rem;
    z-index: 5;
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.8));
    animation: badgePulse 2s ease-in-out infinite;
}

.latest-game-icon {
    font-size: 4rem;
    margin: 20px 0;
    filter: drop-shadow(0 0 15px rgba(255, 215, 0, 0.8));
    position: relative;
    z-index: 1;
}

.latest-game-card h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.latest-game-card p {
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.6;
    font-size: 0.95rem;
    position: relative;
    z-index: 1;
}

.latest-game-stats {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
}

.rtp-stat {
    background: rgba(255, 215, 0, 0.2);
    padding: 8px 15px;
    border-radius: 15px;
    color: var(--christmas-gold);
    font-weight: 700;
    font-size: 0.9rem;
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.rating-stat {
    background: rgba(220, 20, 60, 0.2);
    padding: 8px 15px;
    border-radius: 15px;
    color: var(--text-primary);
    font-weight: 700;
    font-size: 0.9rem;
    border: 1px solid rgba(220, 20, 60, 0.3);
}

/* Progressive Jackpots Section */
.jackpots-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #0A0E27 0%, #1a0033 50%, #0A0E27 100%);
    position: relative;
    z-index: 10;
    overflow: hidden;
}

.jackpots-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 30% 30%, rgba(255, 0, 0, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
        repeating-linear-gradient(
            -45deg,
            transparent,
            transparent 60px,
            rgba(255, 215, 0, 0.03) 60px,
            rgba(255, 215, 0, 0.03) 120px
        );
    pointer-events: none;
    z-index: 0;
}

.jackpots-section::after {
    content: '💰';
    position: absolute;
    top: 10%;
    right: 5%;
    font-size: 10rem;
    opacity: 0.05;
    z-index: 0;
    animation: float 6s ease-in-out infinite;
}

.jackpots-section .container {
    position: relative;
    z-index: 1;
}

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

.jackpot-card {
    background: linear-gradient(135deg, rgba(220, 20, 60, 0.25) 0%, rgba(139, 0, 0, 0.25) 100%);
    border: 3px solid var(--christmas-gold);
    border-radius: 25px;
    padding: 45px 35px;
    text-align: center;
    position: relative;
    transition: all 0.4s ease;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), inset 0 0 40px rgba(255, 215, 0, 0.08);
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.jackpot-card::before {
    content: '💰';
    position: absolute;
    top: -30px;
    right: -30px;
    font-size: 8rem;
    opacity: 0.1;
    z-index: 0;
    animation: float 4s ease-in-out infinite;
}

.jackpot-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 60px rgba(255, 215, 0, 0.5);
    border-color: var(--christmas-gold);
}

.reindeer-badge-jackpot {
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 2.5rem;
    z-index: 5;
    filter: drop-shadow(0 0 15px rgba(255, 215, 0, 1));
    animation: badgePulse 2s ease-in-out infinite;
}

.jackpot-icon {
    font-size: 4rem;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.8));
    position: relative;
    z-index: 1;
}

.jackpot-card h3 {
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--text-primary);
    margin-bottom: 15px;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
    position: relative;
    z-index: 1;
}

.jackpot-amount {
    font-size: 2.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--christmas-gold), #FFA500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 20px 0;
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.8);
    position: relative;
    z-index: 1;
    animation: glow 2s ease-in-out infinite alternate;
}

.jackpot-card p {
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

.jackpot-info {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
}

.jackpot-info span {
    background: rgba(255, 215, 0, 0.2);
    padding: 6px 12px;
    border-radius: 12px;
    font-size: 0.85rem;
    color: var(--text-primary);
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.btn-jackpot {
    background: linear-gradient(135deg, var(--christmas-gold), #FFA500);
    color: #0A0E27;
    padding: 14px 35px;
    border-radius: 25px;
    font-weight: 900;
    text-decoration: none;
    transition: all 0.3s;
    border: 2px solid var(--christmas-gold);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
    position: relative;
    z-index: 1;
    display: inline-block;
}

.btn-jackpot:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(255, 215, 0, 0.6);
}

/* Game Features Section */
.game-features-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a1f3a 0%, #0d1a2e 50%, #1a1f3a 100%);
    position: relative;
    z-index: 10;
    overflow: hidden;
}

.game-features-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 25% 25%, rgba(34, 139, 34, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(255, 215, 0, 0.08) 0%, transparent 50%),
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 80px,
            rgba(255, 215, 0, 0.02) 80px,
            rgba(255, 215, 0, 0.02) 160px
        );
    pointer-events: none;
    z-index: 0;
}

.game-features-section::after {
    content: '✨';
    position: absolute;
    bottom: 10%;
    left: 5%;
    font-size: 8rem;
    opacity: 0.05;
    z-index: 0;
    animation: float 5s ease-in-out infinite;
}

.game-features-section .container {
    position: relative;
    z-index: 1;
}

.features-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.feature-card-modern {
    background: linear-gradient(135deg, rgba(10, 14, 39, 0.95), rgba(26, 31, 58, 0.95));
    border: 3px solid rgba(255, 215, 0, 0.5);
    border-radius: 25px;
    padding: 45px 35px;
    text-align: center;
    position: relative;
    transition: all 0.4s ease;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4), inset 0 0 30px rgba(255, 215, 0, 0.05);
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.feature-card-modern::before {
    content: '🦌';
    position: absolute;
    bottom: -20px;
    right: -20px;
    font-size: 6rem;
    opacity: 0.1;
    z-index: 0;
    animation: reindeerFloat 4s ease-in-out infinite;
}

.feature-card-modern:hover {
    transform: translateY(-10px);
    border-color: var(--christmas-gold);
    box-shadow: 0 20px 50px rgba(255, 215, 0, 0.4);
    background: linear-gradient(135deg, rgba(139, 69, 19, 0.2) 0%, rgba(101, 67, 33, 0.2) 100%);
}

.reindeer-badge-feature {
    position: absolute;
    top: 15px;
    left: 15px;
    font-size: 2rem;
    z-index: 5;
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.8));
    animation: badgePulse 2s ease-in-out infinite;
}

.feature-icon-large {
    font-size: 4.5rem;
    margin: 20px 0;
    filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.8));
    position: relative;
    z-index: 1;
}

.feature-card-modern h3 {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.feature-card-modern p {
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.7;
    font-size: 1rem;
    position: relative;
    z-index: 1;
}

.feature-highlight {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.2), rgba(220, 20, 60, 0.2));
    padding: 10px 20px;
    border-radius: 20px;
    color: var(--christmas-gold);
    font-weight: 800;
    font-size: 0.95rem;
    border: 2px solid rgba(255, 215, 0, 0.3);
    display: inline-block;
    position: relative;
    z-index: 1;
}

.providers-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.provider-card-modern {
    background: rgba(0, 0, 0, 0.4);
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 15px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.3s;
}

.provider-card-modern:hover {
    transform: translateY(-10px);
    border-color: var(--christmas-gold);
    background: rgba(0, 0, 0, 0.6);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.3);
}

.provider-card-modern .provider-icon {
    font-size: 3rem;
    margin-bottom: 15px;
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.8));
}

.provider-card-modern h3 {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.provider-card-modern p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.game-category-section {
    display: none;
    margin-bottom: 80px;
}

.game-category-section.active {
    display: block;
}

/* Games Page Styles */
.games-categories {
    padding: 0;
    background: #1a1f3a;
    position: relative;
    z-index: 10;
}

.category-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 12px 30px;
    background: rgba(0, 0, 0, 0.3);
    border: 2px solid var(--christmas-gold);
    border-radius: 25px;
    color: var(--text-primary);
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
}

.tab-btn:hover,
.tab-btn.active {
    background: var(--christmas-gold);
    color: #0A0E27;
    transform: translateY(-2px);
}

.games-showcase {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a1f3a 0%, #0A0E27 50%, #1a1f3a 100%);
    position: relative;
    z-index: 10;
    overflow: hidden;
}

.games-showcase::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 40% 40%, rgba(139, 69, 19, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 60% 60%, rgba(255, 215, 0, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.games-showcase .container {
    position: relative;
    z-index: 1;
}

.game-category-section {
    margin-bottom: 60px;
}

.game-category-section h2 {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 30px;
    color: var(--text-primary);
    text-align: center;
}

.games-grid-large {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.game-showcase-card {
    background: rgba(0, 0, 0, 0.4);
    border: 3px solid var(--christmas-gold);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s;
}

.game-showcase-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(255, 215, 0, 0.4);
}

.game-image {
    position: relative;
    overflow: hidden;
}

.game-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s;
}

.game-showcase-card:hover .game-image img {
    transform: scale(1.1);
}

.game-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.game-showcase-card:hover .game-overlay {
    opacity: 1;
}

.game-info-overlay {
    text-align: center;
}

.rtp-badge {
    background: var(--christmas-gold);
    color: #0A0E27;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 800;
    margin-bottom: 15px;
    display: inline-block;
}

.play-now-overlay {
    display: inline-block;
    padding: 12px 30px;
    background: var(--christmas-red);
    color: var(--text-primary);
    text-decoration: none;
    border-radius: 25px;
    font-weight: 800;
    transition: all 0.3s;
}

.play-now-overlay:hover {
    background: var(--christmas-green);
    transform: scale(1.1);
}

.game-details {
    padding: 25px;
}

.game-details h3 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.game-details p {
    color: var(--text-secondary);
    margin-bottom: 15px;
    line-height: 1.6;
}

.game-features {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.game-features span {
    background: rgba(255, 215, 0, 0.2);
    padding: 5px 15px;
    border-radius: 15px;
    font-size: 0.9rem;
    color: var(--text-primary);
}

.category-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: 30px;
    line-height: 1.8;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.popular-slots {
    margin-top: 20px;
    padding: 20px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    border: 2px solid rgba(255, 215, 0, 0.2);
}

.popular-slots h4 {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 15px;
}

.popular-slots ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.popular-slots li {
    color: var(--text-secondary);
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    line-height: 1.6;
}

.popular-slots li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--christmas-gold);
    font-weight: 800;
}

.game-providers {
    padding: 80px 0;
    background: #0A0E27;
    position: relative;
    z-index: 10;
}

.providers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.provider-card {
    background: rgba(0, 0, 0, 0.4);
    border: 2px solid var(--christmas-gold);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s;
}

.provider-card:hover {
    transform: translateY(-10px);
    background: rgba(0, 0, 0, 0.6);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.3);
}

.provider-icon {
    font-size: 3rem;
    margin-bottom: 15px;
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.8));
}

.provider-card h4 {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.provider-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* About Page Styles */
.about-content-section {
    padding: 80px 0;
    background: #1a1f3a;
    position: relative;
    z-index: 10;
}

.about-story {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.story-image {
    border-radius: 15px;
    overflow: hidden;
    border: 3px solid var(--christmas-gold);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.3);
}

.story-image img {
    width: 100%;
    height: auto;
    display: block;
}

.story-text h2 {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 20px;
    color: var(--text-primary);
    text-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
}

.story-text p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 20px;
}

.values-section {
    padding: 80px 0;
    background: #0A0E27;
    position: relative;
    z-index: 10;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.value-card {
    background: rgba(0, 0, 0, 0.4);
    border: 3px solid var(--christmas-gold);
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(255, 215, 0, 0.4);
}

.value-icon {
    font-size: 4rem;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 15px rgba(255, 215, 0, 0.8));
}

.value-card h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 15px;
}

.value-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

.stats-section {
    padding: 80px 0;
    background: #1a1f3a;
    position: relative;
    z-index: 10;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.stat-card {
    background: linear-gradient(135deg, var(--christmas-red), var(--christmas-gold));
    border: 3px solid var(--christmas-gold);
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(220, 20, 60, 0.5);
}

.stat-number-large {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.stat-label-large {
    font-size: 1.1rem;
    color: var(--text-primary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Contact Page Styles */
.contact-section {
    padding: 80px 0;
    background: #1a1f3a;
    position: relative;
    z-index: 10;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-top: 40px;
}

.contact-form-wrapper h2,
.contact-info-wrapper h2 {
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 30px;
    color: var(--text-primary);
    text-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    color: var(--text-primary);
    font-weight: 700;
    margin-bottom: 8px;
    font-size: 1rem;
}

.form-group input,
.form-group textarea {
    padding: 15px;
    background: rgba(0, 0, 0, 0.4);
    border: 2px solid var(--christmas-gold);
    border-radius: 10px;
    color: var(--text-primary);
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--christmas-red);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 40px;
}

.contact-method {
    display: flex;
    gap: 20px;
    padding: 25px;
    background: rgba(0, 0, 0, 0.4);
    border: 2px solid var(--christmas-gold);
    border-radius: 15px;
    transition: all 0.3s;
}

.contact-method:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
}

.method-icon {
    font-size: 2.5rem;
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.8));
}

.method-content h3 {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.method-content p {
    color: var(--text-secondary);
    margin: 5px 0;
    font-size: 0.95rem;
}

.response-time {
    background: rgba(0, 0, 0, 0.4);
    border: 2px solid var(--christmas-gold);
    border-radius: 15px;
    padding: 25px;
}

.response-time h3 {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 15px;
}

.response-time ul {
    list-style: none;
    padding: 0;
}

.response-time li {
    color: var(--text-secondary);
    padding: 8px 0;
    font-size: 1rem;
}

.contact-hours,
.contact-topics {
    margin-top: 30px;
    background: rgba(0, 0, 0, 0.4);
    border: 2px solid var(--christmas-gold);
    border-radius: 15px;
    padding: 25px;
}

.contact-hours h3,
.contact-topics h3 {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 15px;
}

.contact-hours ul,
.contact-topics ul {
    list-style: none;
    padding: 0;
}

.contact-hours li,
.contact-topics li {
    color: var(--text-secondary);
    padding: 8px 0;
    font-size: 1rem;
    line-height: 1.6;
}

.additional-contact-info {
    padding: 80px 0;
    background: #0A0E27;
    position: relative;
    z-index: 10;
}

.info-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.info-card {
    background: rgba(0, 0, 0, 0.4);
    border: 3px solid var(--christmas-gold);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s;
}

.info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(255, 215, 0, 0.4);
}

.info-icon {
    font-size: 3rem;
    margin-bottom: 15px;
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.8));
}

.info-card h3 {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 15px;
}

.info-card p {
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 0.95rem;
}

/* Legal Pages Styles */
.legal-content {
    padding: 80px 0;
    background: #1a1f3a;
    position: relative;
    z-index: 10;
}

.legal-section {
    margin-bottom: 40px;
    padding: 30px;
    background: rgba(0, 0, 0, 0.3);
    border-left: 4px solid var(--christmas-gold);
    border-radius: 10px;
}

.legal-section h2 {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--text-primary);
    margin-bottom: 15px;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.legal-section p {
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 1rem;
}

/* Support Page Styles */
.support-section {
    padding: 80px 0;
    background: #1a1f3a;
    position: relative;
    z-index: 10;
}

.support-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.support-option-card {
    background: rgba(0, 0, 0, 0.4);
    border: 3px solid var(--christmas-gold);
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s;
}

.support-option-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(255, 215, 0, 0.4);
}

.option-icon {
    font-size: 4rem;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 15px rgba(255, 215, 0, 0.8));
}

.support-option-card h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 15px;
}

.support-option-card p {
    color: var(--text-secondary);
    margin-bottom: 25px;
    line-height: 1.6;
}

.faq-section {
    margin-top: 60px;
}

.faq-section h2 {
    font-size: 2.5rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 40px;
    color: var(--text-primary);
    text-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
}

/* ============================================
   UNIQUE CHRISTMAS DESIGNS FOR EACH PAGE
   ============================================ */

/* Games Page - Gift Boxes & Reindeer Theme */
.games-page {
    position: relative;
    background: linear-gradient(180deg, #0A0E27 0%, #1a1f3a 30%, #0A0E27 100%);
}

.games-page::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 20%, rgba(255, 215, 0, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(220, 20, 60, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
}

.gift-boxes-decor {
    position: fixed;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2;
}

.floating-gift {
    position: absolute;
    font-size: 2.5rem;
    animation: floatGift 4s ease-in-out infinite;
    filter: drop-shadow(0 0 15px rgba(255, 215, 0, 0.8));
}

.gift-1 {
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.gift-2 {
    top: 30%;
    right: 8%;
    animation-delay: 1s;
}

.gift-3 {
    bottom: 25%;
    left: 10%;
    animation-delay: 2s;
}

.gift-4 {
    top: 60%;
    right: 5%;
    animation-delay: 1.5s;
}

.gift-5 {
    bottom: 10%;
    left: 50%;
    animation-delay: 0.5s;
}

@keyframes floatGift {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-30px) rotate(15deg); }
}

.reindeer-decor {
    position: fixed;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2;
}

.reindeer {
    position: absolute;
    font-size: 3rem;
    animation: reindeerRun 6s ease-in-out infinite;
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.6));
}

.reindeer-1 {
    top: 15%;
    left: 0;
    animation-delay: 0s;
}

.reindeer-2 {
    bottom: 20%;
    right: 0;
    animation-delay: 3s;
    transform: scaleX(-1);
}

@keyframes reindeerRun {
    0%, 100% { transform: translateX(0) translateY(0); }
    25% { transform: translateX(20px) translateY(-10px); }
    75% { transform: translateX(-20px) translateY(10px); }
}

/* Reindeer-Themed Games Page Layout */
.reindeer-hero {
    padding: 120px 0 80px;
    text-align: center;
    background: linear-gradient(135deg, #0A0E27 0%, #1a1f3a 50%, #0A0E27 100%);
    position: relative;
    z-index: 10;
    overflow: hidden;
}

.reindeer-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 30% 30%, rgba(139, 69, 19, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(255, 215, 0, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

.reindeer-hero-content {
    position: relative;
    z-index: 1;
}

.reindeer-icon-large {
    font-size: 6rem;
    margin-bottom: 20px;
    animation: reindeerBounce 2s ease-in-out infinite;
    filter: drop-shadow(0 0 30px rgba(255, 215, 0, 0.8));
}

@keyframes reindeerBounce {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

.reindeer-hero h1 {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 15px;
    color: var(--text-primary);
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.6);
}

.reindeer-hero p {
    font-size: 1.3rem;
    color: var(--text-secondary);
    margin-bottom: 30px;
}

.reindeer-trail {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.reindeer-hoof {
    font-size: 2rem;
    animation: hoofStep 1.5s ease-in-out infinite;
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.6));
}

.reindeer-hoof:nth-child(1) { animation-delay: 0s; }
.reindeer-hoof:nth-child(2) { animation-delay: 0.5s; }
.reindeer-hoof:nth-child(3) { animation-delay: 1s; }

@keyframes hoofStep {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-15px) scale(1.2); }
}

.reindeer-sleigh-tabs {
    position: relative;
    padding: 40px 0;
    margin-bottom: 50px;
}

.sleigh-decor-top,
.sleigh-decor-bottom {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    font-size: 3rem;
    filter: drop-shadow(0 0 15px rgba(255, 215, 0, 0.8));
    animation: sleighFloat 3s ease-in-out infinite;
}

.sleigh-decor-top {
    top: -20px;
}

.sleigh-decor-bottom {
    bottom: -20px;
}

@keyframes sleighFloat {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-10px); }
}

.reindeer-tab {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 15px 25px;
    background: linear-gradient(135deg, rgba(139, 69, 19, 0.3) 0%, rgba(101, 67, 33, 0.3) 100%);
    border: 2px solid rgba(255, 215, 0, 0.5);
    border-radius: 15px;
    color: var(--text-primary);
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.reindeer-tab::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.2) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s;
}

.reindeer-tab:hover::before,
.reindeer-tab.active::before {
    opacity: 1;
}

.reindeer-tab:hover,
.reindeer-tab.active {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.3) 0%, rgba(220, 20, 60, 0.3) 100%);
    border-color: var(--christmas-gold);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.4);
}

.tab-reindeer {
    font-size: 1.5rem;
    animation: tabReindeerBounce 2s ease-in-out infinite;
}

.reindeer-tab.active .tab-reindeer {
    animation: tabReindeerBounce 1s ease-in-out infinite;
}

@keyframes tabReindeerBounce {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-5px) rotate(-10deg); }
}

.reindeer-games-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-top: 40px;
}

.reindeer-game-card {
    background: linear-gradient(135deg, rgba(139, 69, 19, 0.2) 0%, rgba(101, 67, 33, 0.2) 100%);
    border: 3px solid rgba(255, 215, 0, 0.6);
    border-radius: 25px;
    overflow: hidden;
    transition: all 0.4s;
    position: relative;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.reindeer-game-card::before {
    content: '🦌';
    position: absolute;
    top: -15px;
    right: -15px;
    font-size: 4rem;
    opacity: 0.3;
    z-index: 0;
    animation: reindeerFloat 3s ease-in-out infinite;
}

@keyframes reindeerFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(10deg); }
}

.reindeer-game-card:hover {
    transform: translateY(-15px) scale(1.02);
    border-color: var(--christmas-gold);
    box-shadow: 0 20px 60px rgba(255, 215, 0, 0.5);
    background: linear-gradient(135deg, rgba(139, 69, 19, 0.3) 0%, rgba(101, 67, 33, 0.3) 100%);
}

.reindeer-card-header {
    position: relative;
    z-index: 1;
}

.reindeer-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    font-size: 2.5rem;
    z-index: 5;
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.8));
    animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.reindeer-game-details {
    padding: 30px;
    background: rgba(0, 0, 0, 0.4);
    position: relative;
    z-index: 1;
}

.reindeer-game-details h3 {
    font-size: 1.8rem;
    font-weight: 900;
    margin-bottom: 15px;
    color: var(--text-primary);
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
    display: flex;
    align-items: center;
    gap: 10px;
}

.reindeer-game-details h3::before {
    content: '🦌';
    font-size: 1.5rem;
    animation: reindeerBounce 2s ease-in-out infinite;
}

.reindeer-game-details p {
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.8;
    font-size: 1.05rem;
}

.game-features {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.game-features span {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.2) 0%, rgba(220, 20, 60, 0.2) 100%);
    padding: 8px 18px;
    border-radius: 20px;
    font-size: 0.95rem;
    color: var(--text-primary);
    border: 1px solid rgba(255, 215, 0, 0.3);
    transition: all 0.3s;
}

.game-features span:hover {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.4) 0%, rgba(220, 20, 60, 0.4) 100%);
    transform: translateY(-2px);
}

.popular-slots {
    margin-top: 25px;
    padding: 20px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 15px;
    border-left: 4px solid var(--christmas-gold);
}

.popular-slots h4 {
    font-size: 1.2rem;
    color: var(--christmas-gold);
    margin-bottom: 15px;
    font-weight: 800;
}

.popular-slots ul {
    list-style: none;
    padding: 0;
}

.popular-slots li {
    color: var(--text-secondary);
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    line-height: 1.6;
}

.popular-slots li::before {
    content: '🦌';
    position: absolute;
    left: 0;
    font-size: 1rem;
}

.play-now-overlay {
    display: inline-block;
    padding: 12px 30px;
    background: linear-gradient(135deg, var(--christmas-red) 0%, #8B0000 100%);
    color: var(--text-primary);
    text-decoration: none;
    border-radius: 25px;
    font-weight: 800;
    transition: all 0.3s;
    border: 2px solid var(--christmas-gold);
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.3);
}

.play-now-overlay:hover {
    background: linear-gradient(135deg, var(--christmas-gold) 0%, #FFA500 100%);
    color: #0A0E27;
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(255, 215, 0, 0.6);
}

.rtp-badge {
    background: linear-gradient(135deg, var(--christmas-gold) 0%, #FFA500 100%);
    color: #0A0E27;
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: 900;
    margin-bottom: 15px;
    display: inline-block;
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

@media (max-width: 768px) {
    .reindeer-hero h1 {
        font-size: 2rem;
    }
    
    .reindeer-icon-large {
        font-size: 4rem;
    }
    
    .reindeer-tab {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
    
    .reindeer-game-card {
        border-radius: 20px;
    }
    
    .games-hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-stats-mini {
        flex-direction: column;
        gap: 30px;
    }
    
    .games-grid-modern {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .category-header h2 {
        font-size: 2rem;
    }
    
    .popular-games-grid {
        grid-template-columns: 1fr;
    }
    
    .providers-grid-modern {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .category-tabs {
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .tab-btn {
        padding: 10px 15px;
        font-size: 0.85rem;
    }
    
    .latest-games-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .jackpots-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .jackpot-amount {
        font-size: 2rem;
    }
    
    .features-grid-modern {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .feature-card-modern {
        padding: 30px 20px;
    }
    
    .feature-icon-large {
        font-size: 3.5rem;
    }
}

/* Bonus Page - Santa Theme */
.bonus-page {
    position: relative;
    background: linear-gradient(135deg, #0A0E27 0%, #2d1a3a 50%, #0A0E27 100%);
}

.bonus-page::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 30% 30%, rgba(255, 0, 0, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(34, 139, 34, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
}

.santa-decor {
    position: fixed;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2;
}

.santa {
    position: absolute;
    font-size: 4rem;
    animation: santaWave 3s ease-in-out infinite;
    filter: drop-shadow(0 0 20px rgba(255, 0, 0, 1));
}

.santa-1 {
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.santa-2 {
    top: 50%;
    right: 8%;
    animation-delay: 1.5s;
    transform: scaleX(-1);
}

.santa-3 {
    bottom: 15%;
    left: 10%;
    animation-delay: 3s;
}

@keyframes santaWave {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-15px) rotate(-5deg); }
    75% { transform: translateY(-15px) rotate(5deg); }
}

.sleigh-decor {
    position: fixed;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2;
}

.sleigh {
    position: absolute;
    font-size: 3.5rem;
    animation: sleighRide 5s ease-in-out infinite;
    filter: drop-shadow(0 0 15px rgba(255, 215, 0, 0.8));
}

.sleigh-1 {
    top: 20%;
    right: 10%;
    animation-delay: 0s;
}

.sleigh-2 {
    bottom: 20%;
    left: 8%;
    animation-delay: 2.5s;
    transform: scaleX(-1);
}

@keyframes sleighRide {
    0%, 100% { transform: translateX(0) translateY(0); }
    25% { transform: translateX(30px) translateY(-10px); }
    75% { transform: translateX(-30px) translateY(10px); }
}

.presents-decor {
    position: fixed;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2;
}

.present {
    position: absolute;
    font-size: 2.5rem;
    animation: presentBounce 3s ease-in-out infinite;
    filter: drop-shadow(0 0 12px rgba(255, 215, 0, 0.8));
}

.present-1 {
    top: 25%;
    left: 12%;
    animation-delay: 0s;
}

.present-2 {
    top: 40%;
    right: 15%;
    animation-delay: 0.75s;
}

.present-3 {
    bottom: 30%;
    left: 18%;
    animation-delay: 1.5s;
}

.present-4 {
    bottom: 20%;
    right: 12%;
    animation-delay: 2.25s;
}

@keyframes presentBounce {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-25px) scale(1.1); }
}

.santa-hat-decor {
    position: fixed;
    top: 5%;
    right: 5%;
    font-size: 5rem;
    z-index: 2;
    pointer-events: none;
    animation: hatBounce 2s ease-in-out infinite;
    filter: drop-shadow(0 0 25px rgba(255, 0, 0, 1));
}

@keyframes hatBounce {
    0%, 100% { transform: translateY(0) rotate(-5deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

/* Santa Hero Section */
.santa-hero {
    position: relative;
    overflow: hidden;
}

.santa-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 30% 30%, rgba(255, 0, 0, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(255, 215, 0, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.santa-icon-large {
    font-size: 6rem;
    margin-bottom: 20px;
    animation: santaBounce 2s ease-in-out infinite;
    filter: drop-shadow(0 0 30px rgba(255, 0, 0, 0.8));
    position: relative;
    z-index: 1;
}

@keyframes santaBounce {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

.santa-hero h1 {
    position: relative;
    z-index: 1;
}

.santa-hero p {
    position: relative;
    z-index: 1;
}

.santa-trail {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
    position: relative;
    z-index: 1;
}

.santa-hoof {
    font-size: 2rem;
    animation: santaHoofStep 1.5s ease-in-out infinite;
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.6));
}

.santa-hoof:nth-child(1) { animation-delay: 0s; }
.santa-hoof:nth-child(2) { animation-delay: 0.5s; }
.santa-hoof:nth-child(3) { animation-delay: 1s; }

@keyframes santaHoofStep {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-15px) scale(1.2); }
}

/* Bonus Page Content Styles */
.bonus-showcase {
    padding: 60px 20px;
    position: relative;
    z-index: 10;
}

.bonus-showcase-container {
    max-width: 1200px;
    margin: 0 auto;
}

.featured-bonus {
    background: linear-gradient(135deg, var(--christmas-red) 0%, #8B0000 100%);
    border: 4px solid var(--christmas-gold);
    border-radius: 25px;
    padding: 50px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(220, 20, 60, 0.5);
    position: relative;
    overflow: hidden;
}

.santa-badge-featured {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 4rem;
    z-index: 5;
    filter: drop-shadow(0 0 25px rgba(255, 0, 0, 1));
    animation: santaBounce 2s ease-in-out infinite;
}

.featured-bonus::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

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

.bonus-badge {
    display: inline-block;
    background: var(--christmas-gold);
    color: #0A0E27;
    padding: 10px 25px;
    border-radius: 30px;
    font-weight: 900;
    font-size: 1.1rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.featured-bonus h2 {
    font-size: 2.5rem;
    color: var(--text-primary);
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.bonus-amount-large {
    font-size: 4rem;
    font-weight: 900;
    color: var(--christmas-gold);
    margin: 30px 0;
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.8);
    position: relative;
    z-index: 1;
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from { text-shadow: 0 0 30px rgba(255, 215, 0, 0.8); }
    to { text-shadow: 0 0 50px rgba(255, 215, 0, 1), 0 0 70px rgba(255, 215, 0, 0.6); }
}

.bonus-description {
    font-size: 1.2rem;
    color: var(--text-primary);
    margin-bottom: 30px;
    line-height: 1.8;
    position: relative;
    z-index: 1;
}

.bonus-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 40px 0;
    position: relative;
    z-index: 1;
}

.bonus-feature-item {
    background: rgba(0, 0, 0, 0.3);
    padding: 20px;
    border-radius: 15px;
    border: 2px solid var(--christmas-gold);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    transition: all 0.3s;
}

.bonus-feature-item:hover {
    transform: translateY(-5px);
    background: rgba(0, 0, 0, 0.5);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
}

.bonus-feature-item .feature-icon {
    font-size: 2.5rem;
}

.bonus-feature-item span:last-child {
    color: var(--text-primary);
    font-weight: 700;
    font-size: 1rem;
}

.btn-claim-bonus {
    display: inline-block;
    background: var(--christmas-gold);
    color: #0A0E27;
    padding: 18px 50px;
    border-radius: 50px;
    font-weight: 900;
    font-size: 1.2rem;
    text-decoration: none;
    transition: all 0.3s;
    position: relative;
    z-index: 1;
    border: 3px solid var(--christmas-gold);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-claim-bonus:hover {
    background: transparent;
    color: var(--christmas-gold);
    transform: scale(1.05);
    box-shadow: 0 10px 40px rgba(255, 215, 0, 0.5);
}

.bonus-cards-section {
    padding: 80px 20px;
    position: relative;
    z-index: 10;
    background: rgba(0, 0, 0, 0.2);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: var(--text-primary);
    margin-bottom: 50px;
    font-weight: 900;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

.bonus-cards-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.bonus-card-item {
    background: linear-gradient(135deg, rgba(220, 20, 60, 0.2) 0%, rgba(139, 0, 0, 0.2) 100%);
    border: 3px solid var(--christmas-gold);
    border-radius: 20px;
    padding: 35px;
    text-align: center;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.santa-badge-bonus {
    position: absolute;
    top: 15px;
    left: 15px;
    font-size: 2.5rem;
    z-index: 5;
    filter: drop-shadow(0 0 15px rgba(255, 0, 0, 1));
    animation: badgePulse 2s ease-in-out infinite;
}

.santa-badge-promo {
    position: absolute;
    top: 15px;
    left: 15px;
    font-size: 2rem;
    z-index: 5;
    filter: drop-shadow(0 0 12px rgba(255, 0, 0, 1));
    animation: badgePulse 2s ease-in-out infinite;
}

.bonus-card-item::before {
    content: '🎅';
    position: absolute;
    bottom: -30px;
    right: -30px;
    font-size: 7rem;
    opacity: 0.15;
    z-index: 0;
    animation: float 5s ease-in-out infinite;
}

.bonus-card-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.2), transparent);
    transition: left 0.5s;
    z-index: 0;
}

.bonus-card-item:hover::after {
    left: 100%;
}

.bonus-card-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(255, 215, 0, 0.4);
    border-color: var(--christmas-gold);
}

.bonus-card-icon {
    font-size: 4rem;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 15px rgba(255, 215, 0, 0.8));
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.bonus-card-item h3 {
    font-size: 1.8rem;
    color: var(--text-primary);
    margin-bottom: 15px;
    font-weight: 800;
}

.bonus-value {
    font-size: 2rem;
    font-weight: 900;
    color: var(--christmas-gold);
    margin-bottom: 20px;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.6);
}

.bonus-card-item p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 25px;
    font-size: 1rem;
}

.bonus-details {
    list-style: none;
    padding: 0;
    margin: 25px 0;
    text-align: left;
}

.bonus-details li {
    color: var(--text-primary);
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
    font-size: 0.95rem;
}

.bonus-details li:last-child {
    border-bottom: none;
}

.btn-bonus-card {
    display: inline-block;
    background: var(--christmas-gold);
    color: #0A0E27;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s;
    border: 2px solid var(--christmas-gold);
    margin-top: 20px;
}

.btn-bonus-card:hover {
    background: transparent;
    color: var(--christmas-gold);
    transform: scale(1.05);
}

.bonus-terms {
    padding: 80px 20px;
    position: relative;
    z-index: 10;
    background: rgba(0, 0, 0, 0.3);
}

.bonus-terms-container {
    max-width: 1200px;
    margin: 0 auto;
}

.bonus-terms-container h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--text-primary);
    margin-bottom: 50px;
    font-weight: 900;
}

.terms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.term-item {
    background: rgba(220, 20, 60, 0.1);
    border: 2px solid var(--christmas-red);
    border-radius: 15px;
    padding: 25px;
    transition: all 0.3s;
}

.term-item:hover {
    transform: translateY(-5px);
    border-color: var(--christmas-gold);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
}

.term-item h4 {
    font-size: 1.3rem;
    color: var(--christmas-gold);
    margin-bottom: 15px;
    font-weight: 800;
}

.term-item p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 0.95rem;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.faq-item {
    background: rgba(220, 20, 60, 0.1);
    border: 2px solid var(--christmas-red);
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 20px;
    cursor: pointer;
    transition: all 0.3s;
}

.faq-item:hover {
    border-color: var(--christmas-gold);
    background: rgba(220, 20, 60, 0.2);
}

.faq-item h4 {
    font-size: 1.2rem;
    color: var(--text-primary);
    margin: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 700;
}

.faq-icon {
    font-size: 1.5rem;
    color: var(--christmas-gold);
    transition: transform 0.3s;
}

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

.faq-item p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin: 15px 0 0 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, margin 0.4s ease, opacity 0.4s ease;
    opacity: 0;
}

.faq-item.active p {
    max-height: 500px;
    margin-top: 15px;
    opacity: 1;
}

@media (max-width: 768px) {
    .featured-bonus {
        padding: 30px 20px;
    }

    .featured-bonus h2 {
        font-size: 1.8rem;
    }

    .bonus-amount-large {
        font-size: 2.5rem;
    }

    .bonus-features {
        grid-template-columns: 1fr;
    }

    .bonus-cards-grid {
        grid-template-columns: 1fr;
    }

    .terms-grid {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 2rem;
    }
}

/* About Page - Wreaths & Bells Theme */
.about-page {
    position: relative;
    background: linear-gradient(180deg, #0A0E27 0%, #0d1a2e 50%, #0A0E27 100%);
}

.about-page::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 25% 25%, rgba(34, 139, 34, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(255, 215, 0, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
}

.wreaths-decor {
    position: fixed;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2;
}

.wreath {
    position: absolute;
    font-size: 4rem;
    animation: rotateWreath 8s linear infinite;
    filter: drop-shadow(0 0 20px rgba(34, 139, 34, 0.8));
}

.wreath-1 {
    top: 10%;
    left: 3%;
    animation-delay: 0s;
}

.wreath-2 {
    top: 40%;
    right: 5%;
    animation-delay: 2.67s;
}

.wreath-3 {
    bottom: 15%;
    left: 8%;
    animation-delay: 5.33s;
}

@keyframes rotateWreath {
    0% { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(180deg) scale(1.1); }
    100% { transform: rotate(360deg) scale(1); }
}

.bells-decor {
    position: fixed;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2;
}

.bell {
    position: absolute;
    font-size: 2.5rem;
    animation: ringBell 2s ease-in-out infinite;
    filter: drop-shadow(0 0 15px rgba(255, 215, 0, 0.9));
}

.bell-1 {
    top: 20%;
    left: 12%;
    animation-delay: 0s;
}

.bell-2 {
    top: 35%;
    right: 15%;
    animation-delay: 0.5s;
}

.bell-3 {
    bottom: 30%;
    left: 18%;
    animation-delay: 1s;
}

.bell-4 {
    bottom: 20%;
    right: 10%;
    animation-delay: 1.5s;
}

@keyframes ringBell {
    0%, 100% { transform: rotate(-15deg); }
    50% { transform: rotate(15deg); }
}

.holly-decor {
    position: fixed;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2;
}

.holly {
    position: absolute;
    font-size: 2rem;
    animation: hollySway 4s ease-in-out infinite;
    filter: drop-shadow(0 0 10px rgba(220, 20, 60, 0.8));
}

.holly-1 {
    top: 60%;
    left: 5%;
    animation-delay: 0s;
}

.holly-2 {
    top: 25%;
    right: 8%;
    animation-delay: 2s;
}

@keyframes hollySway {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(10deg); }
}

/* Contact Page - Snowmen & Penguins Theme */
.contact-page {
    position: relative;
    background: linear-gradient(180deg, #0A0E27 0%, #1a2332 50%, #0A0E27 100%);
}

.contact-page::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 40% 40%, rgba(255, 255, 255, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 60% 60%, rgba(135, 206, 250, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
}

.snowmen-decor {
    position: fixed;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2;
}

.snowman {
    position: absolute;
    font-size: 4rem;
    animation: snowmanWave 3s ease-in-out infinite;
    filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.8));
}

.snowman-1 {
    bottom: 10%;
    left: 5%;
    animation-delay: 0s;
}

.snowman-2 {
    bottom: 15%;
    right: 8%;
    animation-delay: 1.5s;
}

@keyframes snowmanWave {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-10px) rotate(-5deg); }
    75% { transform: translateY(-10px) rotate(5deg); }
}

.penguins-decor {
    position: fixed;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2;
}

.penguin {
    position: absolute;
    font-size: 2.5rem;
    animation: penguinWaddle 4s ease-in-out infinite;
}

.penguin-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.penguin-2 {
    top: 50%;
    right: 12%;
    animation-delay: 1.33s;
}

.penguin-3 {
    bottom: 25%;
    left: 15%;
    animation-delay: 2.67s;
}

@keyframes penguinWaddle {
    0%, 100% { transform: translateX(0) rotate(0deg); }
    25% { transform: translateX(15px) rotate(5deg); }
    75% { transform: translateX(-15px) rotate(-5deg); }
}

.snow-globe-decor {
    position: fixed;
    top: 10%;
    right: 10%;
    font-size: 5rem;
    z-index: 2;
    pointer-events: none;
    animation: globeShake 3s ease-in-out infinite;
    filter: drop-shadow(0 0 25px rgba(255, 255, 255, 1));
}

@keyframes globeShake {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-15px) rotate(-5deg); }
    75% { transform: translateY(-15px) rotate(5deg); }
}

/* Terms Page - Holly & Mistletoe Theme */
.terms-page {
    position: relative;
    background: linear-gradient(135deg, #0A0E27 0%, #0f1b2a 50%, #0A0E27 100%);
}

.terms-page::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 35% 35%, rgba(34, 139, 34, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 65% 65%, rgba(255, 165, 0, 0.08) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
}

.mistletoe-decor {
    position: fixed;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2;
}

.mistletoe {
    position: absolute;
    font-size: 3rem;
    animation: mistletoeSway 5s ease-in-out infinite;
    filter: drop-shadow(0 0 15px rgba(34, 139, 34, 0.8));
}

.mistletoe-1 {
    top: 15%;
    left: 8%;
    animation-delay: 0s;
}

.mistletoe-2 {
    top: 25%;
    right: 10%;
    animation-delay: 2.5s;
}

@keyframes mistletoeSway {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-25px) rotate(10deg); }
}

.holly-berries-decor {
    position: fixed;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2;
}

.holly-berry {
    position: absolute;
    font-size: 1.8rem;
    animation: berryBounce 3s ease-in-out infinite;
    filter: drop-shadow(0 0 10px rgba(220, 20, 60, 0.8));
}

.berry-1 {
    top: 30%;
    left: 12%;
    animation-delay: 0s;
}

.berry-2 {
    top: 45%;
    right: 15%;
    animation-delay: 0.75s;
}

.berry-3 {
    bottom: 30%;
    left: 18%;
    animation-delay: 1.5s;
}

.berry-4 {
    bottom: 20%;
    right: 12%;
    animation-delay: 2.25s;
}

@keyframes berryBounce {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-20px) scale(1.2); }
}

.candle-decor {
    position: fixed;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2;
}

.candle {
    position: absolute;
    font-size: 2.5rem;
    animation: candleFlicker 2s ease-in-out infinite;
    filter: drop-shadow(0 0 20px rgba(255, 165, 0, 0.9));
}

.candle-1 {
    top: 20%;
    left: 5%;
    animation-delay: 0s;
}

.candle-2 {
    bottom: 25%;
    right: 8%;
    animation-delay: 1s;
}

@keyframes candleFlicker {
    0%, 100% { opacity: 1; transform: scale(1); }
    25% { opacity: 0.8; transform: scale(0.95); }
    50% { opacity: 1; transform: scale(1.05); }
    75% { opacity: 0.9; transform: scale(0.98); }
}

/* Privacy Page - Angels & Stars Theme */
.privacy-page {
    position: relative;
    background: linear-gradient(180deg, #0A0E27 0%, #1a1f3a 40%, #0A0E27 100%);
}

.privacy-page::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 50% 30%, rgba(255, 255, 200, 0.1) 0%, transparent 60%),
        radial-gradient(circle at 20% 70%, rgba(255, 215, 0, 0.08) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
}

.angels-decor {
    position: fixed;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2;
}

.angel {
    position: absolute;
    font-size: 4rem;
    animation: angelFloat 6s ease-in-out infinite;
    filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.9));
}

.angel-1 {
    top: 15%;
    left: 5%;
    animation-delay: 0s;
}

.angel-2 {
    top: 20%;
    right: 8%;
    animation-delay: 3s;
}

@keyframes angelFloat {
    0%, 100% { transform: translateY(0) translateX(0); }
    25% { transform: translateY(-30px) translateX(10px); }
    75% { transform: translateY(-30px) translateX(-10px); }
}

.stars-decor {
    position: fixed;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2;
}

.star-deco {
    position: absolute;
    font-size: 2rem;
    animation: starTwinkle 2s ease-in-out infinite;
    filter: drop-shadow(0 0 15px rgba(255, 215, 0, 1));
}

.star-1 {
    top: 25%;
    left: 10%;
    animation-delay: 0s;
}

.star-2 {
    top: 40%;
    right: 12%;
    animation-delay: 0.4s;
}

.star-3 {
    bottom: 30%;
    left: 15%;
    animation-delay: 0.8s;
}

.star-4 {
    bottom: 20%;
    right: 10%;
    animation-delay: 1.2s;
}

.star-5 {
    top: 60%;
    left: 50%;
    animation-delay: 1.6s;
}

@keyframes starTwinkle {
    0%, 100% { opacity: 0.5; transform: scale(1) rotate(0deg); }
    50% { opacity: 1; transform: scale(1.3) rotate(180deg); }
}

.moon-decor {
    position: fixed;
    top: 5%;
    right: 5%;
    font-size: 4rem;
    z-index: 2;
    pointer-events: none;
    animation: moonGlow 4s ease-in-out infinite;
    filter: drop-shadow(0 0 30px rgba(255, 255, 200, 0.8));
}

@keyframes moonGlow {
    0%, 100% { opacity: 0.8; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.1); }
}

/* Support Page - Elves & Santa Theme */
.support-page {
    position: relative;
    background: linear-gradient(135deg, #0A0E27 0%, #2d1a3a 50%, #0A0E27 100%);
}

.support-page::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 30% 30%, rgba(255, 0, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(34, 139, 34, 0.08) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
}

.elves-decor {
    position: fixed;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2;
}

.elf {
    position: absolute;
    font-size: 3rem;
    animation: elfDance 4s ease-in-out infinite;
    filter: drop-shadow(0 0 15px rgba(34, 139, 34, 0.8));
}

.elf-1 {
    top: 15%;
    left: 8%;
    animation-delay: 0s;
}

.elf-2 {
    top: 45%;
    right: 10%;
    animation-delay: 1.33s;
}

.elf-3 {
    bottom: 20%;
    left: 12%;
    animation-delay: 2.67s;
}

@keyframes elfDance {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-25px) rotate(10deg); }
    75% { transform: translateY(-25px) rotate(-10deg); }
}

.santa-decor {
    position: fixed;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2;
}

.santa {
    position: absolute;
    font-size: 5rem;
    animation: santaWave 3s ease-in-out infinite;
    filter: drop-shadow(0 0 25px rgba(255, 0, 0, 1));
}

.santa-1 {
    top: 10%;
    right: 5%;
    animation-delay: 0s;
}

@keyframes santaWave {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

.sleigh-decor {
    position: fixed;
    bottom: 10%;
    left: 5%;
    font-size: 4rem;
    z-index: 2;
    pointer-events: none;
    animation: sleighRide 5s ease-in-out infinite;
    filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.8));
}

@keyframes sleighRide {
    0%, 100% { transform: translateX(0) translateY(0); }
    50% { transform: translateX(30px) translateY(-10px); }
}

.presents-decor {
    position: fixed;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2;
}

.present-deco {
    position: absolute;
    font-size: 2rem;
    animation: presentBounce 3s ease-in-out infinite;
    filter: drop-shadow(0 0 12px rgba(255, 215, 0, 0.8));
}

.present-1 {
    top: 30%;
    left: 15%;
    animation-delay: 0s;
}

.present-2 {
    top: 50%;
    right: 18%;
    animation-delay: 1s;
}

.present-3 {
    bottom: 25%;
    left: 20%;
    animation-delay: 2s;
}

@keyframes presentBounce {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-25px) scale(1.1); }
}

/* Login Page - Gingerbread & Cookies Theme */
.login-page {
    position: relative;
    background: linear-gradient(180deg, #0A0E27 0%, #2a1f1a 50%, #0A0E27 100%);
}

.login-page::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 25% 25%, rgba(139, 69, 19, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(255, 165, 0, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
}

.gingerbread-decor {
    position: fixed;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2;
}

.gingerbread {
    position: absolute;
    font-size: 3rem;
    animation: cookieSpin 4s ease-in-out infinite;
    filter: drop-shadow(0 0 15px rgba(139, 69, 19, 0.8));
}

.gb-1 {
    top: 20%;
    left: 8%;
    animation-delay: 0s;
}

.gb-2 {
    top: 45%;
    right: 10%;
    animation-delay: 1.33s;
}

.gb-3 {
    bottom: 25%;
    left: 12%;
    animation-delay: 2.67s;
}

@keyframes cookieSpin {
    0%, 100% { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(180deg) scale(1.2); }
}

.cookie-decor {
    position: fixed;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2;
}

.cookie {
    position: absolute;
    font-size: 2rem;
    animation: cookieFloat 3s ease-in-out infinite;
}

.cookie-1 {
    top: 30%;
    left: 15%;
    animation-delay: 0s;
}

.cookie-2 {
    top: 55%;
    right: 12%;
    animation-delay: 0.75s;
}

.cookie-3 {
    bottom: 30%;
    left: 18%;
    animation-delay: 1.5s;
}

.cookie-4 {
    bottom: 20%;
    right: 15%;
    animation-delay: 2.25s;
}

@keyframes cookieFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(15deg); }
}

.hot-chocolate-decor {
    position: fixed;
    top: 10%;
    right: 8%;
    font-size: 4rem;
    z-index: 2;
    pointer-events: none;
    animation: steamRise 2s ease-in-out infinite;
    filter: drop-shadow(0 0 20px rgba(139, 69, 19, 0.8));
}

@keyframes steamRise {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-15px) scale(1.1); }
}

/* Register Page - Fireplace & Cozy Theme */
.register-page {
    position: relative;
    background: linear-gradient(135deg, #0A0E27 0%, #3d1a0a 50%, #0A0E27 100%);
}

.register-page::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255, 69, 0, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 215, 0, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
}

.fireplace-decor {
    position: fixed;
    bottom: 5%;
    left: 5%;
    font-size: 5rem;
    z-index: 2;
    pointer-events: none;
    animation: fireFlicker 1.5s ease-in-out infinite;
    filter: drop-shadow(0 0 30px rgba(255, 69, 0, 1));
}

@keyframes fireFlicker {
    0%, 100% { opacity: 1; transform: scale(1); }
    25% { opacity: 0.9; transform: scale(0.95); }
    50% { opacity: 1; transform: scale(1.05); }
    75% { opacity: 0.95; transform: scale(0.98); }
}

.cozy-decor {
    position: fixed;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2;
}

.sock {
    position: absolute;
    font-size: 3rem;
    animation: sockSwing 3s ease-in-out infinite;
    filter: drop-shadow(0 0 15px rgba(220, 20, 60, 0.8));
}

.sock-1 {
    top: 15%;
    left: 8%;
    animation-delay: 0s;
}

.sock-2 {
    top: 20%;
    right: 10%;
    animation-delay: 1.5s;
}

@keyframes sockSwing {
    0%, 100% { transform: rotate(-10deg) translateY(0); }
    50% { transform: rotate(10deg) translateY(-15px); }
}

.ornament-balls-decor {
    position: fixed;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2;
}

.ornament-ball {
    position: absolute;
    font-size: 2rem;
    animation: ballSwing 4s ease-in-out infinite;
    filter: drop-shadow(0 0 12px rgba(255, 215, 0, 0.8));
}

.ball-1 {
    top: 25%;
    left: 12%;
    animation-delay: 0s;
}

.ball-2 {
    top: 40%;
    right: 15%;
    animation-delay: 0.8s;
}

.ball-3 {
    bottom: 30%;
    left: 18%;
    animation-delay: 1.6s;
}

.ball-4 {
    bottom: 20%;
    right: 12%;
    animation-delay: 2.4s;
}

.ball-5 {
    top: 60%;
    left: 50%;
    animation-delay: 3.2s;
}

@keyframes ballSwing {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-30px) rotate(20deg); }
}

/* Footer */
.footer {
    background: #0A0E27;
    padding: 50px 0 30px;
    border-top: 3px solid var(--christmas-red);
    position: relative;
    z-index: 10;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.footer-logo img {
    height: 50px;
    filter: drop-shadow(0 0 10px var(--christmas-gold));
}

.footer-links {
    display: flex;
    gap: 30px;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s;
    font-weight: 600;
}

.footer-links a:hover {
    color: var(--christmas-gold);
}

.footer-copy {
    text-align: center;
}

.footer-copy p {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.footer-copy a {
    color: var(--christmas-gold);
    text-decoration: none;
    font-weight: 700;
}

/* Responsive */
@media (max-width: 1024px) {
    .about-grid,
    .bonus-layout,
    .mobile-grid,
    .vip-grid,
    .presents-grid {
        grid-template-columns: 1fr;
    }

    .features-grid,
    .payment-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .games-grid,
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .navbar .container {
        flex-direction: column;
        gap: 20px;
    }

    .nav-links {
        gap: 20px;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 30px;
    }

    .features,
    .features-grid,
    .payment-grid {
        grid-template-columns: 1fr;
    }

    .games-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .section-header h2 {
        font-size: 2.5rem;
    }

    .presents-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .present-header {
        padding: 30px 20px;
    }

    .present-header h3 {
        font-size: 2rem;
    }

    .present-icon {
        font-size: 3rem;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .present-benefits {
        padding: 30px 20px;
    }

    .benefit-header h4 {
        font-size: 1.5rem;
    }

    .benefit-item {
        flex-direction: column;
        text-align: center;
    }

    .benefit-icon {
        font-size: 2rem;
    }

    /* Hide some decorations on mobile for performance */
    .floating-gift,
    .reindeer,
    .stocking,
    .candy-cane,
    .wreath,
    .bell,
    .snowman,
    .penguin,
    .mistletoe,
    .holly-berry,
    .candle,
    .angel,
    .star-deco,
    .elf,
    .santa,
    .sleigh,
    .present-deco,
    .gingerbread,
    .cookie,
    .sock,
    .ornament-ball {
        font-size: 1.5rem !important;
    }

    .santa-hat-decor,
    .snow-globe-decor,
    .moon-decor,
    .hot-chocolate-decor,
    .fireplace-decor {
        font-size: 2.5rem !important;
    }

    .christmas-tree-container {
        right: 20px;
        bottom: 20px;
    }

    .christmas-tree {
        width: 120px;
        height: 180px;
    }

    .tree-top {
        left: 30px;
        border-left-width: 30px;
        border-right-width: 30px;
        border-bottom-width: 50px;
    }

    .tree-middle {
        top: 40px;
        left: 20px;
        border-left-width: 40px;
        border-right-width: 40px;
        border-bottom-width: 60px;
    }

    .tree-bottom {
        top: 90px;
        left: 5px;
        border-left-width: 55px;
        border-right-width: 55px;
        border-bottom-width: 70px;
    }

    .tree-trunk {
        left: 50px;
        width: 20px;
        height: 25px;
    }

    .star {
        top: -15px;
        left: 50px;
        font-size: 1.5rem;
    }

    .ornament {
        font-size: 0.8rem;
    }

    .ornament-1 {
        top: 20px;
        left: 35px;
    }

    .ornament-2 {
        top: 30px;
        left: 80px;
    }

    .ornament-3 {
        top: 60px;
        left: 45px;
    }

    .ornament-4 {
        top: 70px;
        left: 85px;
    }

    .ornament-5 {
        top: 110px;
        left: 30px;
    }

    .ornament-6 {
        top: 120px;
        left: 75px;
    }

    .ornament-7 {
        top: 130px;
        left: 55px;
    }
}

/* ============================================
   BONUS PAGE - NEW SECTIONS STYLES
   ============================================ */

/* Daily Promotions Section */
.daily-promotions-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a1f3a 0%, #0A0E27 50%, #1a1f3a 100%);
    position: relative;
    z-index: 10;
    overflow: hidden;
}

.daily-promotions-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 30% 30%, rgba(255, 0, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(255, 215, 0, 0.08) 0%, transparent 50%),
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 50px,
            rgba(255, 215, 0, 0.02) 50px,
            rgba(255, 215, 0, 0.02) 100px
        );
    pointer-events: none;
    z-index: 0;
}

.daily-promotions-section .container {
    position: relative;
    z-index: 1;
}

.promotions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.promotion-card {
    background: linear-gradient(135deg, rgba(220, 20, 60, 0.2) 0%, rgba(139, 0, 0, 0.2) 100%);
    border: 3px solid var(--christmas-gold);
    border-radius: 25px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    transition: all 0.4s ease;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4), inset 0 0 30px rgba(255, 215, 0, 0.05);
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.promotion-card::before {
    content: '🎅';
    position: absolute;
    bottom: -30px;
    right: -30px;
    font-size: 8rem;
    opacity: 0.1;
    z-index: 0;
    animation: float 6s ease-in-out infinite;
}

.promotion-card::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
    z-index: 0;
}

.promotion-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 60px rgba(255, 215, 0, 0.5);
    border-color: var(--christmas-gold);
}

.promotion-day {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--christmas-gold);
    color: #0A0E27;
    padding: 8px 15px;
    border-radius: 20px;
    font-weight: 900;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.5);
}

.promotion-icon {
    font-size: 4rem;
    margin: 20px 0;
    filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.8));
    position: relative;
    z-index: 1;
}

.promotion-card h3 {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.promotion-offer {
    font-size: 1.8rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--christmas-gold), #FFA500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 20px 0;
    position: relative;
    z-index: 1;
}

.promotion-card p {
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

.promotion-details {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 25px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.promotion-details span {
    background: rgba(255, 215, 0, 0.2);
    padding: 6px 12px;
    border-radius: 12px;
    font-size: 0.85rem;
    color: var(--text-primary);
    border: 1px solid rgba(255, 215, 0, 0.3);
}

/* Bonus Calendar Section */
.bonus-calendar-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #0A0E27 0%, #1a0033 50%, #0A0E27 100%);
    position: relative;
    z-index: 10;
    overflow: hidden;
}

.bonus-calendar-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 25% 25%, rgba(255, 0, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(255, 215, 0, 0.08) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.bonus-calendar-section::after {
    content: '📅';
    position: absolute;
    top: 10%;
    right: 5%;
    font-size: 8rem;
    opacity: 0.05;
    z-index: 0;
    animation: float 6s ease-in-out infinite;
}

.bonus-calendar-section .container {
    position: relative;
    z-index: 1;
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.calendar-month {
    background: linear-gradient(135deg, rgba(220, 20, 60, 0.15) 0%, rgba(139, 0, 0, 0.15) 100%);
    border: 3px solid var(--christmas-gold);
    border-radius: 25px;
    padding: 40px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.calendar-month::before {
    content: '🎅';
    position: absolute;
    top: -20px;
    right: -20px;
    font-size: 6rem;
    opacity: 0.1;
    z-index: 0;
    animation: float 5s ease-in-out infinite;
}

.calendar-month::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 30px,
        rgba(255, 215, 0, 0.03) 30px,
        rgba(255, 215, 0, 0.03) 60px
    );
    pointer-events: none;
    z-index: 0;
}

.calendar-month h3 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--text-primary);
    margin-bottom: 30px;
    text-align: center;
    text-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
    position: relative;
    z-index: 1;
}

.calendar-events {
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: relative;
    z-index: 1;
}

.calendar-event {
    background: rgba(0, 0, 0, 0.4);
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 15px;
    padding: 25px;
    display: flex;
    gap: 20px;
    align-items: center;
    transition: all 0.3s ease;
}

.calendar-event:hover {
    background: rgba(0, 0, 0, 0.6);
    border-color: var(--christmas-gold);
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
}

.event-date {
    background: linear-gradient(135deg, var(--christmas-gold), #FFA500);
    color: #0A0E27;
    padding: 15px 20px;
    border-radius: 15px;
    font-weight: 900;
    font-size: 1rem;
    min-width: 80px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

.event-content h4 {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.event-content p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin: 0;
}

/* How to Claim Section */
.how-to-claim-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a1f3a 0%, #0d1a2e 50%, #1a1f3a 100%);
    position: relative;
    z-index: 10;
    overflow: hidden;
}

.how-to-claim-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 40% 40%, rgba(34, 139, 34, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 60% 60%, rgba(255, 215, 0, 0.08) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.how-to-claim-section .container {
    position: relative;
    z-index: 1;
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
    position: relative;
}

.steps-container::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--christmas-gold), transparent);
    z-index: 0;
    display: none;
}

@media (min-width: 1024px) {
    .steps-container::before {
        display: block;
    }
}

.step-card {
    background: linear-gradient(135deg, rgba(10, 14, 39, 0.95), rgba(26, 31, 58, 0.95));
    border: 3px solid rgba(255, 215, 0, 0.5);
    border-radius: 25px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    transition: all 0.4s ease;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    z-index: 1;
    backdrop-filter: blur(10px);
}

.step-card::before {
    content: '🎅';
    position: absolute;
    bottom: -25px;
    right: -25px;
    font-size: 5rem;
    opacity: 0.1;
    z-index: 0;
    animation: float 4s ease-in-out infinite;
}

.step-card:hover {
    transform: translateY(-15px) scale(1.05);
    border-color: var(--christmas-gold);
    box-shadow: 0 25px 60px rgba(255, 215, 0, 0.5);
}

.step-number {
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--christmas-gold), #FFA500);
    color: #0A0E27;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 1.5rem;
    border: 4px solid var(--christmas-gold);
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.6);
}

.step-icon {
    font-size: 4rem;
    margin: 30px 0 20px;
    filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.8));
}

.step-card h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 15px;
}

.step-card p {
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.7;
    font-size: 0.95rem;
}

.step-highlight {
    background: rgba(255, 215, 0, 0.2);
    padding: 8px 20px;
    border-radius: 20px;
    color: var(--christmas-gold);
    font-weight: 800;
    font-size: 0.9rem;
    border: 2px solid rgba(255, 215, 0, 0.3);
    display: inline-block;
}

/* Bonus Stats Section */
.bonus-stats-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #0A0E27 0%, #1a1f3a 50%, #0A0E27 100%);
    position: relative;
    z-index: 10;
    overflow: hidden;
}

.bonus-stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 50% 50%, rgba(255, 215, 0, 0.08) 0%, transparent 60%),
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 40px,
            rgba(220, 20, 60, 0.02) 40px,
            rgba(220, 20, 60, 0.02) 80px
        );
    pointer-events: none;
    z-index: 0;
}

.bonus-stats-section::after {
    content: '📊';
    position: absolute;
    bottom: 5%;
    right: 8%;
    font-size: 7rem;
    opacity: 0.05;
    z-index: 0;
    animation: float 5s ease-in-out infinite;
}

.bonus-stats-section .container {
    position: relative;
    z-index: 1;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.stat-card-large {
    background: linear-gradient(135deg, rgba(220, 20, 60, 0.2) 0%, rgba(139, 0, 0, 0.2) 100%);
    border: 3px solid var(--christmas-gold);
    border-radius: 25px;
    padding: 45px 35px;
    text-align: center;
    position: relative;
    transition: all 0.4s ease;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.stat-card-large::before {
    content: '🎅';
    position: absolute;
    bottom: -30px;
    right: -30px;
    font-size: 7rem;
    opacity: 0.1;
    z-index: 0;
    animation: float 5s ease-in-out infinite;
}

.stat-card-large::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
    animation: rotate 15s linear infinite;
    z-index: 0;
}

.stat-card-large:hover {
    transform: translateY(-15px) scale(1.05);
    box-shadow: 0 25px 60px rgba(255, 215, 0, 0.5);
    border-color: var(--christmas-gold);
}

.stat-icon-large {
    font-size: 4.5rem;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.8));
    position: relative;
    z-index: 1;
}

.stat-number-large {
    font-size: 3rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--christmas-gold), #FFA500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 20px 0;
    position: relative;
    z-index: 1;
}

.stat-label-large {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    z-index: 1;
}

.stat-card-large p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

.achievements-showcase {
    margin-top: 80px;
    text-align: center;
}

.achievements-showcase h3 {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--text-primary);
    margin-bottom: 40px;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.6);
}

.wins-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.win-card {
    background: linear-gradient(135deg, rgba(139, 69, 19, 0.2) 0%, rgba(101, 67, 33, 0.2) 100%);
    border: 3px solid rgba(255, 215, 0, 0.6);
    border-radius: 20px;
    padding: 35px 30px;
    text-align: center;
    position: relative;
    transition: all 0.4s ease;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    overflow: hidden;
}

.win-card::before {
    content: '🏆';
    position: absolute;
    top: -20px;
    right: -20px;
    font-size: 6rem;
    opacity: 0.1;
    z-index: 0;
    animation: float 4s ease-in-out infinite;
}

.win-card:hover {
    transform: translateY(-10px);
    border-color: var(--christmas-gold);
    box-shadow: 0 25px 60px rgba(255, 215, 0, 0.5);
}

.win-amount {
    font-size: 2.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--christmas-gold), #FFA500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
    animation: glow 2s ease-in-out infinite alternate;
}

.win-details {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 15px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.win-player {
    background: rgba(255, 215, 0, 0.2);
    padding: 8px 15px;
    border-radius: 15px;
    color: var(--text-primary);
    font-weight: 700;
    font-size: 0.9rem;
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.win-game {
    background: rgba(220, 20, 60, 0.2);
    padding: 8px 15px;
    border-radius: 15px;
    color: var(--text-primary);
    font-weight: 700;
    font-size: 0.9rem;
    border: 1px solid rgba(220, 20, 60, 0.3);
}

.win-bonus {
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-style: italic;
    position: relative;
    z-index: 1;
}

@media (max-width: 768px) {
    .promotions-grid {
        grid-template-columns: 1fr;
    }
    
    .calendar-grid {
        grid-template-columns: 1fr;
    }
    
    .steps-container {
        grid-template-columns: 1fr;
    }
    
    .steps-container::before {
        display: none;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .wins-grid {
        grid-template-columns: 1fr;
    }
    
    .stat-number-large {
        font-size: 2.5rem;
    }
    
    .win-amount {
        font-size: 2rem;
    }
}

/* ============================================
   ABOUT PAGE - CHRISTMAS ELF THEME
   ============================================ */

/* About Page - Elves Theme */
.about-page {
    position: relative;
    background: linear-gradient(180deg, #0A0E27 0%, #0d1a2e 50%, #0A0E27 100%);
}

.about-page::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 25% 25%, rgba(34, 139, 34, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(255, 215, 0, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
}

.elves-decor {
    position: fixed;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2;
}

.elf {
    position: absolute;
    font-size: 3.5rem;
    animation: elfDance 4s ease-in-out infinite;
    filter: drop-shadow(0 0 15px rgba(34, 139, 34, 0.8));
}

.elf-1 {
    top: 15%;
    left: 8%;
    animation-delay: 0s;
}

.elf-2 {
    top: 45%;
    right: 10%;
    animation-delay: 1.33s;
}

.elf-3 {
    bottom: 20%;
    left: 12%;
    animation-delay: 2.67s;
}

.elf-4 {
    top: 60%;
    right: 8%;
    animation-delay: 4s;
}

@keyframes elfDance {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-25px) rotate(10deg); }
    75% { transform: translateY(-25px) rotate(-10deg); }
}

.elf-workshop-decor {
    position: fixed;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2;
}

.workshop {
    position: absolute;
    font-size: 2.5rem;
    animation: workshopFloat 3s ease-in-out infinite;
    filter: drop-shadow(0 0 12px rgba(255, 215, 0, 0.8));
}

.workshop-1 {
    top: 30%;
    left: 15%;
    animation-delay: 0s;
}

.workshop-2 {
    top: 50%;
    right: 12%;
    animation-delay: 1s;
}

.workshop-3 {
    bottom: 25%;
    left: 18%;
    animation-delay: 2s;
}

@keyframes workshopFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(15deg); }
}

.elf-hat-decor {
    position: fixed;
    top: 5%;
    right: 5%;
    font-size: 5rem;
    z-index: 2;
    pointer-events: none;
    animation: hatBounce 2s ease-in-out infinite;
    filter: drop-shadow(0 0 25px rgba(34, 139, 34, 1));
}

/* Elf Hero Section */
.elf-hero {
    position: relative;
    overflow: hidden;
    padding: 120px 0 80px;
    text-align: center;
}

.elf-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 30% 30%, rgba(34, 139, 34, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(255, 215, 0, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.elf-icon-large {
    font-size: 6rem;
    margin-bottom: 20px;
    animation: elfBounce 2s ease-in-out infinite;
    filter: drop-shadow(0 0 30px rgba(34, 139, 34, 0.8));
    position: relative;
    z-index: 1;
}

@keyframes elfBounce {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

.elf-hero h1 {
    position: relative;
    z-index: 1;
}

.elf-hero p {
    position: relative;
    z-index: 1;
}

.elf-trail {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
    position: relative;
    z-index: 1;
}

.elf-step {
    font-size: 2rem;
    animation: elfStep 1.5s ease-in-out infinite;
    filter: drop-shadow(0 0 10px rgba(34, 139, 34, 0.6));
}

.elf-step:nth-child(1) { animation-delay: 0s; }
.elf-step:nth-child(2) { animation-delay: 0.5s; }
.elf-step:nth-child(3) { animation-delay: 1s; }

@keyframes elfStep {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-15px) scale(1.2); }
}

@keyframes badgePulse {
    0%, 100% { transform: scale(1); filter: drop-shadow(0 0 15px rgba(34, 139, 34, 1)); }
    50% { transform: scale(1.1); filter: drop-shadow(0 0 25px rgba(34, 139, 34, 1)); }
}

@keyframes hatBounce {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(10deg); }
}

/* Elf Badges */
.elf-badge-value {
    position: absolute;
    top: 15px;
    left: 15px;
    font-size: 2.5rem;
    z-index: 5;
    filter: drop-shadow(0 0 15px rgba(34, 139, 34, 1));
    animation: badgePulse 2s ease-in-out infinite;
}

.elf-badge-mission {
    position: absolute;
    top: 15px;
    left: 15px;
    font-size: 2.5rem;
    z-index: 5;
    filter: drop-shadow(0 0 15px rgba(34, 139, 34, 1));
    animation: badgePulse 2s ease-in-out infinite;
}

.elf-badge-tech {
    position: absolute;
    top: 15px;
    left: 15px;
    font-size: 2.5rem;
    z-index: 5;
    filter: drop-shadow(0 0 15px rgba(34, 139, 34, 1));
    animation: badgePulse 2s ease-in-out infinite;
}

.elf-badge-award {
    position: absolute;
    top: 15px;
    left: 15px;
    font-size: 2.5rem;
    z-index: 5;
    filter: drop-shadow(0 0 15px rgba(34, 139, 34, 1));
    animation: badgePulse 2s ease-in-out infinite;
}

.elf-badge-community {
    position: absolute;
    top: 15px;
    left: 15px;
    font-size: 2.5rem;
    z-index: 5;
    filter: drop-shadow(0 0 15px rgba(34, 139, 34, 1));
    animation: badgePulse 2s ease-in-out infinite;
}

.elf-badge-plan {
    position: absolute;
    top: 15px;
    left: 15px;
    font-size: 2.5rem;
    z-index: 5;
    filter: drop-shadow(0 0 15px rgba(34, 139, 34, 1));
    animation: badgePulse 2s ease-in-out infinite;
}

/* Mission & Vision Section */
.mission-vision-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a1f3a 0%, #0A0E27 50%, #1a1f3a 100%);
    position: relative;
    z-index: 10;
    overflow: hidden;
}

.mission-vision-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 40% 40%, rgba(34, 139, 34, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 60% 60%, rgba(255, 215, 0, 0.08) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.mission-vision-section::after {
    content: '🧝';
    position: absolute;
    bottom: 5%;
    right: 8%;
    font-size: 8rem;
    opacity: 0.05;
    z-index: 0;
    animation: float 6s ease-in-out infinite;
}

.mission-vision-section .container {
    position: relative;
    z-index: 1;
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.mission-card {
    background: linear-gradient(135deg, rgba(34, 139, 34, 0.2) 0%, rgba(22, 101, 22, 0.2) 100%);
    border: 3px solid var(--christmas-gold);
    border-radius: 25px;
    padding: 45px 35px;
    text-align: center;
    position: relative;
    transition: all 0.4s ease;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.mission-card::before {
    content: '🧝';
    position: absolute;
    bottom: -30px;
    right: -30px;
    font-size: 7rem;
    opacity: 0.1;
    z-index: 0;
    animation: float 5s ease-in-out infinite;
}

.mission-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 60px rgba(255, 215, 0, 0.5);
    border-color: var(--christmas-gold);
}

.mission-icon {
    font-size: 4.5rem;
    margin: 20px 0;
    filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.8));
    position: relative;
    z-index: 1;
}

.mission-card h3 {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.mission-card p {
    color: var(--text-secondary);
    margin-bottom: 25px;
    line-height: 1.8;
    font-size: 1rem;
    position: relative;
    z-index: 1;
}

.mission-highlight {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.2), rgba(34, 139, 34, 0.2));
    padding: 12px 25px;
    border-radius: 20px;
    color: var(--christmas-gold);
    font-weight: 800;
    font-size: 1rem;
    border: 2px solid rgba(255, 215, 0, 0.3);
    display: inline-block;
    position: relative;
    z-index: 1;
}

/* Technology Section */
.technology-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #0A0E27 0%, #1a1f3a 50%, #0A0E27 100%);
    position: relative;
    z-index: 10;
    overflow: hidden;
}

.technology-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 30% 30%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(34, 139, 34, 0.08) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.technology-section::after {
    content: '💻';
    position: absolute;
    top: 10%;
    left: 5%;
    font-size: 7rem;
    opacity: 0.05;
    z-index: 0;
    animation: float 5s ease-in-out infinite;
}

.technology-section .container {
    position: relative;
    z-index: 1;
}

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

.tech-card {
    background: linear-gradient(135deg, rgba(10, 14, 39, 0.95), rgba(26, 31, 58, 0.95));
    border: 3px solid rgba(255, 215, 0, 0.5);
    border-radius: 25px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    transition: all 0.4s ease;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.tech-card::before {
    content: '🧝';
    position: absolute;
    bottom: -25px;
    right: -25px;
    font-size: 6rem;
    opacity: 0.1;
    z-index: 0;
    animation: float 4s ease-in-out infinite;
}

.tech-card:hover {
    transform: translateY(-15px);
    border-color: var(--christmas-gold);
    box-shadow: 0 25px 60px rgba(255, 215, 0, 0.5);
}

.tech-icon {
    font-size: 4rem;
    margin: 20px 0;
    filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.8));
    position: relative;
    z-index: 1;
}

.tech-card h3 {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.tech-card p {
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.7;
    font-size: 0.95rem;
    position: relative;
    z-index: 1;
}

.tech-features {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.tech-features span {
    background: rgba(255, 215, 0, 0.2);
    padding: 6px 12px;
    border-radius: 12px;
    font-size: 0.85rem;
    color: var(--text-primary);
    border: 1px solid rgba(255, 215, 0, 0.3);
}

/* Awards & Recognition Section */
.awards-recognition-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a1f3a 0%, #0d1a2e 50%, #1a1f3a 100%);
    position: relative;
    z-index: 10;
    overflow: hidden;
}

.awards-recognition-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 25% 25%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(34, 139, 34, 0.08) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.awards-recognition-section::after {
    content: '🏅';
    position: absolute;
    top: 5%;
    right: 8%;
    font-size: 6rem;
    opacity: 0.05;
    z-index: 0;
    animation: float 6s ease-in-out infinite;
}

.awards-recognition-section .container {
    position: relative;
    z-index: 1;
}

.awards-timeline {
    max-width: 900px;
    margin: 50px auto 0;
    position: relative;
}

.awards-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, transparent, var(--christmas-gold), transparent);
    transform: translateX(-50%);
    z-index: 0;
}

.award-item {
    display: flex;
    gap: 40px;
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
}

.award-item:nth-child(even) {
    flex-direction: row-reverse;
}

.award-year {
    background: linear-gradient(135deg, var(--christmas-gold), #FFA500);
    color: #0A0E27;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 1.3rem;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.5);
    border: 4px solid var(--christmas-gold);
    flex-shrink: 0;
    position: relative;
    z-index: 2;
}

.award-content {
    flex: 1;
    background: linear-gradient(135deg, rgba(34, 139, 34, 0.2) 0%, rgba(22, 101, 22, 0.2) 100%);
    border: 3px solid var(--christmas-gold);
    border-radius: 20px;
    padding: 35px;
    position: relative;
    transition: all 0.4s ease;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
}

.award-content::before {
    content: '🧝';
    position: absolute;
    bottom: -20px;
    right: -20px;
    font-size: 5rem;
    opacity: 0.1;
    z-index: 0;
    animation: float 4s ease-in-out infinite;
}

.award-content:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(255, 215, 0, 0.5);
    border-color: var(--christmas-gold);
}

.award-content h3 {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.award-content p {
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

.award-badge {
    background: rgba(255, 215, 0, 0.2);
    padding: 8px 20px;
    border-radius: 20px;
    color: var(--christmas-gold);
    font-weight: 800;
    font-size: 0.9rem;
    border: 2px solid rgba(255, 215, 0, 0.3);
    display: inline-block;
    position: relative;
    z-index: 1;
}

/* Community Section */
.community-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #0A0E27 0%, #1a1f3a 50%, #0A0E27 100%);
    position: relative;
    z-index: 10;
    overflow: hidden;
}

.community-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 50% 50%, rgba(255, 215, 0, 0.08) 0%, transparent 60%),
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 40px,
            rgba(34, 139, 34, 0.02) 40px,
            rgba(34, 139, 34, 0.02) 80px
        );
    pointer-events: none;
    z-index: 0;
}

.community-section::after {
    content: '👥';
    position: absolute;
    bottom: 5%;
    left: 8%;
    font-size: 7rem;
    opacity: 0.05;
    z-index: 0;
    animation: float 5s ease-in-out infinite;
}

.community-section .container {
    position: relative;
    z-index: 1;
}

.community-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.community-stat-card {
    background: linear-gradient(135deg, rgba(34, 139, 34, 0.2) 0%, rgba(22, 101, 22, 0.2) 100%);
    border: 3px solid var(--christmas-gold);
    border-radius: 25px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    transition: all 0.4s ease;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.community-stat-card::before {
    content: '🧝';
    position: absolute;
    bottom: -25px;
    right: -25px;
    font-size: 6rem;
    opacity: 0.1;
    z-index: 0;
    animation: float 4s ease-in-out infinite;
}

.community-stat-card:hover {
    transform: translateY(-15px) scale(1.05);
    box-shadow: 0 25px 60px rgba(255, 215, 0, 0.5);
    border-color: var(--christmas-gold);
}

.community-icon {
    font-size: 4rem;
    margin: 20px 0;
    filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.8));
    position: relative;
    z-index: 1;
}

.community-number {
    font-size: 2.8rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--christmas-gold), #FFA500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 20px 0;
    position: relative;
    z-index: 1;
}

.community-label {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    z-index: 1;
}

.community-stat-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

.community-features {
    margin-top: 80px;
    text-align: center;
}

.community-features h3 {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--text-primary);
    margin-bottom: 40px;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.6);
}

.features-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.feature-item {
    background: rgba(0, 0, 0, 0.4);
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 20px;
    padding: 30px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(0, 0, 0, 0.6);
    border-color: var(--christmas-gold);
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
}

.feature-check {
    font-size: 2rem;
    flex-shrink: 0;
    filter: drop-shadow(0 0 10px rgba(34, 139, 34, 0.8));
}

.feature-text h4 {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.feature-text p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* Future Plans Section */
.future-plans-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a1f3a 0%, #0A0E27 50%, #1a1f3a 100%);
    position: relative;
    z-index: 10;
    overflow: hidden;
}

.future-plans-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 30% 30%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(34, 139, 34, 0.08) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.future-plans-section::after {
    content: '🚀';
    position: absolute;
    top: 10%;
    right: 5%;
    font-size: 8rem;
    opacity: 0.05;
    z-index: 0;
    animation: float 6s ease-in-out infinite;
}

.future-plans-section .container {
    position: relative;
    z-index: 1;
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.plan-card {
    background: linear-gradient(135deg, rgba(10, 14, 39, 0.95), rgba(26, 31, 58, 0.95));
    border: 3px solid rgba(255, 215, 0, 0.5);
    border-radius: 25px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    transition: all 0.4s ease;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.plan-card::before {
    content: '🧝';
    position: absolute;
    bottom: -25px;
    right: -25px;
    font-size: 6rem;
    opacity: 0.1;
    z-index: 0;
    animation: float 4s ease-in-out infinite;
}

.plan-card:hover {
    transform: translateY(-15px);
    border-color: var(--christmas-gold);
    box-shadow: 0 25px 60px rgba(255, 215, 0, 0.5);
    background: linear-gradient(135deg, rgba(34, 139, 34, 0.2) 0%, rgba(22, 101, 22, 0.2) 100%);
}

.plan-icon {
    font-size: 4rem;
    margin: 20px 0;
    filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.8));
    position: relative;
    z-index: 1;
}

.plan-card h3 {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.plan-card p {
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.7;
    font-size: 0.95rem;
    position: relative;
    z-index: 1;
}

.plan-timeline {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.2), rgba(34, 139, 34, 0.2));
    padding: 10px 20px;
    border-radius: 20px;
    color: var(--christmas-gold);
    font-weight: 800;
    font-size: 0.9rem;
    border: 2px solid rgba(255, 215, 0, 0.3);
    display: inline-block;
    position: relative;
    z-index: 1;
}

@media (max-width: 768px) {
    .mission-vision-grid {
        grid-template-columns: 1fr;
    }
    
    .tech-grid {
        grid-template-columns: 1fr;
    }
    
    .awards-timeline::before {
        left: 30px;
    }
    
    .award-item {
        flex-direction: row !important;
        padding-left: 80px;
    }
    
    .award-year {
        position: absolute;
        left: 0;
    }
    
    .community-stats {
        grid-template-columns: 1fr;
    }
    
    .features-list {
        grid-template-columns: 1fr;
    }
    
    .plans-grid {
        grid-template-columns: 1fr;
    }
    
    .elf-icon-large {
        font-size: 4rem;
    }
    
    .elf-hero h1 {
        font-size: 2rem;
    }
    
    .elf-hero p {
        font-size: 1rem;
    }
}

/* ============================================
   BONUS PAGE - REDESIGNED LAYOUT
   ============================================ */

/* Bonus Page Base */
.bonus-page {
    position: relative;
    background: linear-gradient(180deg, #0A0E27 0%, #0d1a2e 50%, #0A0E27 100%);
    min-height: 100vh;
}

.bonus-page::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 20%, rgba(220, 20, 60, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 215, 0, 0.12) 0%, transparent 50%),
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 100px,
            rgba(255, 215, 0, 0.02) 100px,
            rgba(255, 215, 0, 0.02) 200px
        );
    pointer-events: none;
    z-index: 1;
}

/* Santa Decorations */
.santa-decor {
    position: fixed;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2;
}

.santa {
    position: absolute;
    font-size: 4rem;
    animation: santaFloat 5s ease-in-out infinite;
    filter: drop-shadow(0 0 20px rgba(220, 20, 60, 0.8));
}

.santa-1 {
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.santa-2 {
    top: 50%;
    right: 8%;
    animation-delay: 2.5s;
}

.santa-3 {
    bottom: 15%;
    left: 10%;
    animation-delay: 5s;
}

@keyframes santaFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-30px) rotate(5deg); }
}

.sleigh-decor {
    position: fixed;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2;
}

.sleigh {
    position: absolute;
    font-size: 3rem;
    animation: sleighSlide 6s ease-in-out infinite;
    filter: drop-shadow(0 0 15px rgba(255, 215, 0, 0.8));
}

.sleigh-1 {
    top: 30%;
    left: 12%;
    animation-delay: 0s;
}

.sleigh-2 {
    bottom: 25%;
    right: 10%;
    animation-delay: 3s;
}

@keyframes sleighSlide {
    0%, 100% { transform: translateX(0) translateY(0); }
    50% { transform: translateX(30px) translateY(-20px); }
}

.santa-hat-decor {
    position: fixed;
    top: 3%;
    right: 3%;
    font-size: 6rem;
    z-index: 2;
    pointer-events: none;
    animation: hatBounce 2.5s ease-in-out infinite;
    filter: drop-shadow(0 0 30px rgba(220, 20, 60, 1));
}

.presents-decor {
    position: fixed;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2;
}

.present {
    position: absolute;
    font-size: 2.5rem;
    animation: presentFloat 4s ease-in-out infinite;
    filter: drop-shadow(0 0 12px rgba(255, 215, 0, 0.8));
}

.present-1 {
    top: 25%;
    left: 8%;
    animation-delay: 0s;
}

.present-2 {
    top: 60%;
    right: 12%;
    animation-delay: 1s;
}

.present-3 {
    bottom: 30%;
    left: 15%;
    animation-delay: 2s;
}

.present-4 {
    top: 40%;
    right: 6%;
    animation-delay: 3s;
}

@keyframes presentFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-25px) rotate(15deg); }
}

/* Santa Hero Section - Redesigned */
.santa-hero {
    position: relative;
    padding: 140px 0 100px;
    text-align: center;
    background: linear-gradient(135deg, #0A0E27 0%, #1a1f3a 50%, #0A0E27 100%);
    overflow: hidden;
    z-index: 10;
}

.santa-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 30% 30%, rgba(220, 20, 60, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(255, 215, 0, 0.15) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.santa-hero::after {
    content: '🎅';
    position: absolute;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 15rem;
    opacity: 0.05;
    z-index: 0;
    animation: float 8s ease-in-out infinite;
}

.santa-hero .container {
    position: relative;
    z-index: 1;
}

.santa-icon-large {
    font-size: 7rem;
    margin-bottom: 25px;
    animation: santaBounce 2s ease-in-out infinite;
    filter: drop-shadow(0 0 40px rgba(220, 20, 60, 1));
    position: relative;
    z-index: 1;
    display: inline-block;
}

@keyframes santaBounce {
    0%, 100% { transform: translateY(0) rotate(0deg) scale(1); }
    50% { transform: translateY(-25px) rotate(5deg) scale(1.1); }
}

.santa-hero h1 {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 20px;
    color: var(--text-primary);
    text-shadow: 0 0 30px rgba(220, 20, 60, 0.8), 0 0 60px rgba(255, 215, 0, 0.6);
    position: relative;
    z-index: 1;
    line-height: 1.2;
}

.santa-hero p {
    font-size: 1.4rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
    position: relative;
    z-index: 1;
}

.santa-trail {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-top: 40px;
    position: relative;
    z-index: 1;
}

.santa-hoof {
    font-size: 2.5rem;
    animation: hoofStep 1.5s ease-in-out infinite;
    filter: drop-shadow(0 0 15px rgba(220, 20, 60, 0.8));
}

.santa-hoof:nth-child(1) { animation-delay: 0s; }
.santa-hoof:nth-child(2) { animation-delay: 0.5s; }
.santa-hoof:nth-child(3) { animation-delay: 1s; }

@keyframes hoofStep {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-20px) scale(1.3); }
}

/* Bonus Showcase - Redesigned */
.bonus-showcase {
    padding: 100px 0;
    position: relative;
    z-index: 10;
    background: linear-gradient(135deg, #1a1f3a 0%, #0A0E27 50%, #1a1f3a 100%);
}

.bonus-showcase-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.featured-bonus {
    background: linear-gradient(135deg, rgba(220, 20, 60, 0.25) 0%, rgba(139, 0, 0, 0.25) 100%);
    border: 4px solid var(--christmas-gold);
    border-radius: 30px;
    padding: 60px 50px;
    text-align: center;
    position: relative;
    box-shadow: 0 25px 80px rgba(220, 20, 60, 0.4), inset 0 0 60px rgba(255, 215, 0, 0.1);
    overflow: hidden;
    backdrop-filter: blur(15px);
}

.featured-bonus::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.15) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
    z-index: 0;
}

.featured-bonus::after {
    content: '🎅';
    position: absolute;
    bottom: -40px;
    right: -40px;
    font-size: 12rem;
    opacity: 0.1;
    z-index: 0;
    animation: float 6s ease-in-out infinite;
}

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

.santa-badge-featured {
    position: absolute;
    top: 25px;
    left: 25px;
    font-size: 3.5rem;
    z-index: 5;
    filter: drop-shadow(0 0 20px rgba(220, 20, 60, 1));
    animation: badgePulse 2s ease-in-out infinite;
}

.bonus-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--christmas-gold), #FFA500);
    color: #0A0E27;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 900;
    font-size: 1.1rem;
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.5);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.featured-bonus h2 {
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--text-primary);
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.6);
}

.bonus-amount-large {
    font-size: 4.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--christmas-gold), #FFA500, var(--christmas-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.8);
    animation: glow 2s ease-in-out infinite;
}

@keyframes glow {
    0%, 100% { filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.8)); }
    50% { filter: drop-shadow(0 0 40px rgba(255, 215, 0, 1)); }
}

.bonus-description {
    font-size: 1.2rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

.bonus-features {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.bonus-feature-item {
    background: rgba(0, 0, 0, 0.4);
    border: 2px solid rgba(255, 215, 0, 0.3);
    padding: 15px 25px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-primary);
    font-weight: 700;
    transition: all 0.3s ease;
}

.bonus-feature-item:hover {
    background: rgba(255, 215, 0, 0.2);
    border-color: var(--christmas-gold);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
}

.feature-icon {
    font-size: 1.5rem;
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.8));
}

.btn-claim-bonus {
    background: linear-gradient(135deg, var(--christmas-gold), #FFA500);
    color: #0A0E27;
    padding: 20px 50px;
    font-size: 1.3rem;
    font-weight: 900;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.5);
    border: 3px solid var(--christmas-gold);
}

.btn-claim-bonus:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 50px rgba(255, 215, 0, 0.7);
    background: linear-gradient(135deg, #FFA500, var(--christmas-gold));
}

/* Bonus Cards Section - Redesigned */
.bonus-cards-section {
    padding: 100px 0;
    position: relative;
    z-index: 10;
    background: linear-gradient(135deg, #0A0E27 0%, #1a1f3a 50%, #0A0E27 100%);
}

.bonus-cards-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 40% 40%, rgba(255, 215, 0, 0.08) 0%, transparent 50%),
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 80px,
            rgba(220, 20, 60, 0.02) 80px,
            rgba(220, 20, 60, 0.02) 160px
        );
    pointer-events: none;
    z-index: 0;
}

.section-title {
    font-size: 3rem;
    font-weight: 900;
    text-align: center;
    color: var(--text-primary);
    margin-bottom: 60px;
    text-shadow: 0 0 25px rgba(255, 215, 0, 0.6);
    position: relative;
    z-index: 1;
}

.bonus-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 35px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.bonus-card-item {
    background: linear-gradient(135deg, rgba(10, 14, 39, 0.95), rgba(26, 31, 58, 0.95));
    border: 3px solid rgba(255, 215, 0, 0.5);
    border-radius: 25px;
    padding: 40px 35px;
    text-align: center;
    position: relative;
    transition: all 0.4s ease;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.bonus-card-item::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.bonus-card-item:hover::before {
    opacity: 1;
}

.bonus-card-item:hover {
    transform: translateY(-15px) scale(1.02);
    border-color: var(--christmas-gold);
    box-shadow: 0 30px 70px rgba(255, 215, 0, 0.5);
    background: linear-gradient(135deg, rgba(220, 20, 60, 0.2) 0%, rgba(139, 0, 0, 0.2) 100%);
}

.santa-badge-bonus {
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 2.8rem;
    z-index: 5;
    filter: drop-shadow(0 0 15px rgba(220, 20, 60, 1));
    animation: badgePulse 2s ease-in-out infinite;
}

.bonus-card-icon {
    font-size: 5rem;
    margin: 25px 0;
    filter: drop-shadow(0 0 25px rgba(255, 215, 0, 0.8));
    position: relative;
    z-index: 1;
    animation: iconFloat 3s ease-in-out infinite;
}

@keyframes iconFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(5deg); }
}

.bonus-card-item h3 {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--text-primary);
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.bonus-value {
    font-size: 2.2rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--christmas-gold), #FFA500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.bonus-card-item p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 25px;
    font-size: 1rem;
    position: relative;
    z-index: 1;
}

.bonus-details {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
    text-align: left;
    position: relative;
    z-index: 1;
}

.bonus-details li {
    color: var(--text-secondary);
    padding: 10px 0;
    font-size: 0.95rem;
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

.bonus-details li:last-child {
    border-bottom: none;
}

.btn-bonus-card {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.2), rgba(220, 20, 60, 0.2));
    color: var(--text-primary);
    padding: 15px 35px;
    font-size: 1.1rem;
    font-weight: 800;
    border-radius: 25px;
    border: 2px solid var(--christmas-gold);
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    display: inline-block;
}

.btn-bonus-card:hover {
    background: linear-gradient(135deg, var(--christmas-gold), #FFA500);
    color: #0A0E27;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.5);
}

/* Bonus Terms Section - Redesigned */
.bonus-terms {
    padding: 100px 0;
    position: relative;
    z-index: 10;
    background: linear-gradient(135deg, #1a1f3a 0%, #0A0E27 50%, #1a1f3a 100%);
}

.bonus-terms-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.bonus-terms h2 {
    font-size: 3rem;
    font-weight: 900;
    text-align: center;
    color: var(--text-primary);
    margin-bottom: 60px;
    text-shadow: 0 0 25px rgba(255, 215, 0, 0.6);
}

.terms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.term-item {
    background: rgba(0, 0, 0, 0.4);
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 20px;
    padding: 35px 30px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.term-item:hover {
    background: rgba(0, 0, 0, 0.6);
    border-color: var(--christmas-gold);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.3);
}

.term-item h4 {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--text-primary);
    margin-bottom: 15px;
}

.term-item p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* Daily Promotions Section - Redesigned */
.daily-promotions-section {
    padding: 100px 0;
    position: relative;
    z-index: 10;
    background: linear-gradient(135deg, #0A0E27 0%, #1a1f3a 50%, #0A0E27 100%);
    overflow: hidden;
}

.daily-promotions-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 50% 50%, rgba(220, 20, 60, 0.1) 0%, transparent 60%),
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 50px,
            rgba(255, 215, 0, 0.02) 50px,
            rgba(255, 215, 0, 0.02) 100px
        );
    pointer-events: none;
    z-index: 0;
}

.daily-promotions-section::after {
    content: '🎁';
    position: absolute;
    bottom: 5%;
    right: 5%;
    font-size: 10rem;
    opacity: 0.05;
    z-index: 0;
    animation: float 8s ease-in-out infinite;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.section-header h2 {
    font-size: 3rem;
    font-weight: 900;
    color: var(--text-primary);
    margin-bottom: 20px;
    text-shadow: 0 0 25px rgba(255, 215, 0, 0.6);
}

.section-header p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
}

.promotions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.promotion-card {
    background: linear-gradient(135deg, rgba(220, 20, 60, 0.2) 0%, rgba(139, 0, 0, 0.2) 100%);
    border: 3px solid var(--christmas-gold);
    border-radius: 25px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    transition: all 0.4s ease;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.promotion-card::before {
    content: '🎅';
    position: absolute;
    bottom: -30px;
    right: -30px;
    font-size: 8rem;
    opacity: 0.1;
    z-index: 0;
    animation: float 5s ease-in-out infinite;
}

.promotion-card:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: 0 30px 70px rgba(255, 215, 0, 0.5);
    border-color: var(--christmas-gold);
}

.santa-badge-promo {
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 2.5rem;
    z-index: 5;
    filter: drop-shadow(0 0 15px rgba(220, 20, 60, 1));
    animation: badgePulse 2s ease-in-out infinite;
}

.promotion-day {
    background: linear-gradient(135deg, var(--christmas-gold), #FFA500);
    color: #0A0E27;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 900;
    font-size: 0.9rem;
    display: inline-block;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.promotion-icon {
    font-size: 4.5rem;
    margin: 20px 0;
    filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.8));
    position: relative;
    z-index: 1;
    animation: iconFloat 3s ease-in-out infinite;
}

.promotion-card h3 {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--text-primary);
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.promotion-offer {
    font-size: 2rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--christmas-gold), #FFA500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.promotion-card p {
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

.promotion-details {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
}

.promotion-details span {
    background: rgba(0, 0, 0, 0.4);
    padding: 8px 15px;
    border-radius: 15px;
    font-size: 0.85rem;
    color: var(--text-primary);
    border: 1px solid rgba(255, 215, 0, 0.3);
}

/* Bonus Calendar Section - Redesigned */
.bonus-calendar-section {
    padding: 100px 0;
    position: relative;
    z-index: 10;
    background: linear-gradient(135deg, #1a1f3a 0%, #0A0E27 50%, #1a1f3a 100%);
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.calendar-month {
    background: linear-gradient(135deg, rgba(10, 14, 39, 0.95), rgba(26, 31, 58, 0.95));
    border: 3px solid var(--christmas-gold);
    border-radius: 25px;
    padding: 40px 35px;
    position: relative;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    overflow: hidden;
}

.calendar-month::before {
    content: '📅';
    position: absolute;
    top: -30px;
    right: -30px;
    font-size: 10rem;
    opacity: 0.1;
    z-index: 0;
    animation: float 6s ease-in-out infinite;
}

.calendar-month h3 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--text-primary);
    margin-bottom: 30px;
    text-align: center;
    position: relative;
    z-index: 1;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.6);
}

.calendar-events {
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: relative;
    z-index: 1;
}

.calendar-event {
    background: rgba(0, 0, 0, 0.4);
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 15px;
    padding: 20px;
    display: flex;
    gap: 20px;
    align-items: center;
    transition: all 0.3s ease;
}

.calendar-event:hover {
    background: rgba(220, 20, 60, 0.2);
    border-color: var(--christmas-gold);
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
}

.event-date {
    background: linear-gradient(135deg, var(--christmas-gold), #FFA500);
    color: #0A0E27;
    padding: 12px 20px;
    border-radius: 15px;
    font-weight: 900;
    font-size: 1rem;
    min-width: 80px;
    text-align: center;
    flex-shrink: 0;
}

.event-content h4 {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.event-content p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin: 0;
}

/* How to Claim Section - Redesigned */
.how-to-claim-section {
    padding: 100px 0;
    position: relative;
    z-index: 10;
    background: linear-gradient(135deg, #0A0E27 0%, #1a1f3a 50%, #0A0E27 100%);
    overflow: hidden;
}

.how-to-claim-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 30% 30%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(220, 20, 60, 0.08) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.step-card {
    background: linear-gradient(135deg, rgba(220, 20, 60, 0.2) 0%, rgba(139, 0, 0, 0.2) 100%);
    border: 3px solid var(--christmas-gold);
    border-radius: 25px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    transition: all 0.4s ease;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.step-card::before {
    content: '🎅';
    position: absolute;
    bottom: -25px;
    right: -25px;
    font-size: 7rem;
    opacity: 0.1;
    z-index: 0;
    animation: float 5s ease-in-out infinite;
}

.step-card:hover {
    transform: translateY(-15px) scale(1.05);
    box-shadow: 0 30px 70px rgba(255, 215, 0, 0.5);
    border-color: var(--christmas-gold);
}

.step-number {
    position: absolute;
    top: -20px;
    left: 30px;
    background: linear-gradient(135deg, var(--christmas-gold), #FFA500);
    color: #0A0E27;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 1.8rem;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.5);
    border: 4px solid var(--christmas-gold);
    z-index: 5;
}

.step-icon {
    font-size: 4.5rem;
    margin: 30px 0 20px;
    filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.8));
    position: relative;
    z-index: 1;
    animation: iconFloat 3s ease-in-out infinite;
}

.step-card h3 {
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--text-primary);
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.step-card p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.step-highlight {
    background: rgba(255, 215, 0, 0.2);
    padding: 10px 20px;
    border-radius: 20px;
    color: var(--christmas-gold);
    font-weight: 800;
    font-size: 0.9rem;
    border: 2px solid rgba(255, 215, 0, 0.3);
    display: inline-block;
    position: relative;
    z-index: 1;
}

/* Bonus Stats Section - Redesigned */
.bonus-stats-section {
    padding: 100px 0;
    position: relative;
    z-index: 10;
    background: linear-gradient(135deg, #1a1f3a 0%, #0A0E27 50%, #1a1f3a 100%);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto 60px;
    padding: 0 20px;
}

.stat-card-large {
    background: linear-gradient(135deg, rgba(220, 20, 60, 0.2) 0%, rgba(139, 0, 0, 0.2) 100%);
    border: 3px solid var(--christmas-gold);
    border-radius: 25px;
    padding: 50px 40px;
    text-align: center;
    position: relative;
    transition: all 0.4s ease;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.stat-card-large::before {
    content: '🎅';
    position: absolute;
    bottom: -30px;
    right: -30px;
    font-size: 8rem;
    opacity: 0.1;
    z-index: 0;
    animation: float 5s ease-in-out infinite;
}

.stat-card-large:hover {
    transform: translateY(-15px) scale(1.05);
    box-shadow: 0 30px 70px rgba(255, 215, 0, 0.5);
    border-color: var(--christmas-gold);
}

.stat-icon-large {
    font-size: 4.5rem;
    margin-bottom: 25px;
    filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.8));
    position: relative;
    z-index: 1;
}

.stat-number-large {
    font-size: 3.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--christmas-gold), #FFA500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.stat-label-large {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    z-index: 1;
}

.stat-card-large p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

.achievements-showcase {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.achievements-showcase h3 {
    font-size: 2.5rem;
    font-weight: 900;
    text-align: center;
    color: var(--text-primary);
    margin-bottom: 40px;
    text-shadow: 0 0 25px rgba(255, 215, 0, 0.6);
}

.wins-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.win-card {
    background: linear-gradient(135deg, rgba(10, 14, 39, 0.95), rgba(26, 31, 58, 0.95));
    border: 3px solid var(--christmas-gold);
    border-radius: 20px;
    padding: 35px 30px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
}

.win-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(255, 215, 0, 0.5);
    border-color: var(--christmas-gold);
}

.win-amount {
    font-size: 2.8rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--christmas-gold), #FFA500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
}

.win-details {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    padding: 15px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 15px;
}

.win-player {
    font-weight: 800;
    color: var(--text-primary);
}

.win-game {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.win-bonus {
    background: rgba(255, 215, 0, 0.2);
    padding: 8px 15px;
    border-radius: 15px;
    color: var(--christmas-gold);
    font-weight: 700;
    font-size: 0.85rem;
    display: inline-block;
}

/* FAQ Section - Redesigned */
.faq {
    padding: 100px 0;
    position: relative;
    z-index: 10;
    background: linear-gradient(135deg, #0A0E27 0%, #1a1f3a 50%, #0A0E27 100%);
}

.faq-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.faq-item {
    background: rgba(0, 0, 0, 0.4);
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.faq-item:hover {
    background: rgba(0, 0, 0, 0.6);
    border-color: var(--christmas-gold);
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
}

.faq-item h4 {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-icon {
    font-size: 1.5rem;
    color: var(--christmas-gold);
}

.faq-item p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .santa-hero h1 {
        font-size: 2.5rem;
    }
    
    .santa-hero p {
        font-size: 1.1rem;
    }
    
    .santa-icon-large {
        font-size: 5rem;
    }
    
    .bonus-amount-large {
        font-size: 3rem;
    }
    
    .bonus-cards-grid {
        grid-template-columns: 1fr;
    }
    
    .promotions-grid {
        grid-template-columns: 1fr;
    }
    
    .calendar-grid {
        grid-template-columns: 1fr;
    }
    
    .steps-container {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .wins-grid {
        grid-template-columns: 1fr;
    }
    
    .section-title,
    .section-header h2 {
        font-size: 2rem;
    }
    
    .featured-bonus {
        padding: 40px 25px;
    }
}

/* ============================================
   CONTACT PAGE - PRESENT/GIFT THEME
   ============================================ */

/* Contact Page Base */
.contact-page {
    position: relative;
    background: linear-gradient(180deg, #0A0E27 0%, #0d1a2e 50%, #0A0E27 100%);
    min-height: 100vh;
}

.contact-page::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 25% 25%, rgba(255, 215, 0, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(220, 20, 60, 0.12) 0%, transparent 50%),
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 120px,
            rgba(255, 215, 0, 0.02) 120px,
            rgba(255, 215, 0, 0.02) 240px
        );
    pointer-events: none;
    z-index: 1;
}

/* Present Decorations */
.presents-decor-contact {
    position: fixed;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2;
}

.present-gift {
    position: absolute;
    font-size: 4rem;
    animation: giftFloat 5s ease-in-out infinite;
    filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.8));
}

.present-1 {
    top: 12%;
    left: 6%;
    animation-delay: 0s;
}

.present-2 {
    top: 45%;
    right: 8%;
    animation-delay: 1.25s;
}

.present-3 {
    bottom: 18%;
    left: 10%;
    animation-delay: 2.5s;
}

.present-4 {
    top: 60%;
    right: 12%;
    animation-delay: 3.75s;
}

.present-5 {
    top: 30%;
    left: 15%;
    animation-delay: 5s;
}

@keyframes giftFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-30px) rotate(15deg); }
}

.gift-ribbons-decor {
    position: fixed;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2;
}

.ribbon {
    position: absolute;
    font-size: 3rem;
    animation: ribbonFloat 4s ease-in-out infinite;
    filter: drop-shadow(0 0 15px rgba(220, 20, 60, 0.8));
}

.ribbon-1 {
    top: 25%;
    left: 12%;
    animation-delay: 0s;
}

.ribbon-2 {
    top: 55%;
    right: 10%;
    animation-delay: 1.33s;
}

.ribbon-3 {
    bottom: 25%;
    left: 14%;
    animation-delay: 2.67s;
}

@keyframes ribbonFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-25px) rotate(10deg); }
}

.gift-box-decor {
    position: fixed;
    top: 4%;
    right: 4%;
    font-size: 7rem;
    z-index: 2;
    pointer-events: none;
    animation: boxBounce 2.5s ease-in-out infinite;
    filter: drop-shadow(0 0 35px rgba(255, 215, 0, 1));
}

@keyframes boxBounce {
    0%, 100% { transform: translateY(0) rotate(0deg) scale(1); }
    50% { transform: translateY(-20px) rotate(5deg) scale(1.1); }
}

/* Present Hero Section */
.present-hero {
    position: relative;
    padding: 140px 0 100px;
    text-align: center;
    background: linear-gradient(135deg, #0A0E27 0%, #1a1f3a 50%, #0A0E27 100%);
    overflow: hidden;
    z-index: 10;
}

.present-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 30% 30%, rgba(255, 215, 0, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(220, 20, 60, 0.15) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.present-hero::after {
    content: '🎁';
    position: absolute;
    bottom: -60px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 18rem;
    opacity: 0.05;
    z-index: 0;
    animation: float 8s ease-in-out infinite;
}

.present-hero .container {
    position: relative;
    z-index: 1;
}

.present-icon-large {
    font-size: 7rem;
    margin-bottom: 25px;
    animation: presentBounce 2s ease-in-out infinite;
    filter: drop-shadow(0 0 40px rgba(255, 215, 0, 1));
    position: relative;
    z-index: 1;
    display: inline-block;
}

@keyframes presentBounce {
    0%, 100% { transform: translateY(0) rotate(0deg) scale(1); }
    50% { transform: translateY(-25px) rotate(10deg) scale(1.1); }
}

.present-hero h1 {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 20px;
    color: var(--text-primary);
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.8), 0 0 60px rgba(220, 20, 60, 0.6);
    position: relative;
    z-index: 1;
    line-height: 1.2;
}

.present-hero p {
    font-size: 1.4rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
    position: relative;
    z-index: 1;
}

.present-trail {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-top: 40px;
    position: relative;
    z-index: 1;
}

.present-step {
    font-size: 2.5rem;
    animation: presentStep 1.5s ease-in-out infinite;
    filter: drop-shadow(0 0 15px rgba(255, 215, 0, 0.8));
}

.present-step:nth-child(1) { animation-delay: 0s; }
.present-step:nth-child(2) { animation-delay: 0.5s; }
.present-step:nth-child(3) { animation-delay: 1s; }

@keyframes presentStep {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-20px) scale(1.3); }
}

/* Present Badges */
.present-badge-form,
.present-badge-info,
.present-badge-channel,
.present-badge-faq,
.present-badge-team,
.present-badge-tip,
.present-badge-emergency,
.present-badge-feedback,
.present-badge-social {
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 2.8rem;
    z-index: 5;
    filter: drop-shadow(0 0 20px rgba(255, 215, 0, 1));
    animation: badgePulse 2s ease-in-out infinite;
}

/* Contact Section Styling */
.contact-section {
    padding: 100px 0;
    position: relative;
    z-index: 10;
    background: linear-gradient(135deg, #1a1f3a 0%, #0A0E27 50%, #1a1f3a 100%);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.contact-form-wrapper,
.contact-info-wrapper {
    background: linear-gradient(135deg, rgba(10, 14, 39, 0.95), rgba(26, 31, 58, 0.95));
    border: 3px solid var(--christmas-gold);
    border-radius: 25px;
    padding: 50px 40px;
    position: relative;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    overflow: hidden;
}

.contact-form-wrapper::before,
.contact-info-wrapper::before {
    content: '🎁';
    position: absolute;
    bottom: -40px;
    right: -40px;
    font-size: 10rem;
    opacity: 0.1;
    z-index: 0;
    animation: float 6s ease-in-out infinite;
}

.contact-form-wrapper h2,
.contact-info-wrapper h2 {
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--text-primary);
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.6);
}

.contact-form {
    position: relative;
    z-index: 1;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    color: var(--text-primary);
    font-weight: 700;
    margin-bottom: 10px;
    font-size: 1rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    background: rgba(0, 0, 0, 0.4);
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 15px;
    color: var(--text-primary);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--christmas-gold);
    background: rgba(0, 0, 0, 0.6);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}

.contact-methods {
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.contact-method {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    padding: 25px;
    background: rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(255, 215, 0, 0.2);
    border-radius: 20px;
    transition: all 0.3s ease;
}

.contact-method:hover {
    background: rgba(255, 215, 0, 0.1);
    border-color: var(--christmas-gold);
    transform: translateX(10px);
}

.method-icon {
    font-size: 3rem;
    filter: drop-shadow(0 0 15px rgba(255, 215, 0, 0.8));
}

.method-content h3 {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.method-content p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin: 4px 0;
}

.response-time,
.contact-hours,
.contact-topics {
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.response-time h3,
.contact-hours h3,
.contact-topics h3 {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--text-primary);
    margin-bottom: 20px;
}

.response-time ul,
.contact-hours ul,
.contact-topics ul {
    list-style: none;
    padding: 0;
}

.response-time li,
.contact-hours li,
.contact-topics li {
    color: var(--text-secondary);
    padding: 12px 0;
    font-size: 0.95rem;
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

.response-time li:last-child,
.contact-hours li:last-child,
.contact-topics li:last-child {
    border-bottom: none;
}

/* Support Channels Section */
.support-channels-section {
    padding: 100px 0;
    position: relative;
    z-index: 10;
    background: linear-gradient(135deg, #0A0E27 0%, #1a1f3a 50%, #0A0E27 100%);
    overflow: hidden;
}

.support-channels-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 50% 50%, rgba(255, 215, 0, 0.1) 0%, transparent 60%),
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 60px,
            rgba(220, 20, 60, 0.02) 60px,
            rgba(220, 20, 60, 0.02) 120px
        );
    pointer-events: none;
    z-index: 0;
}

.channels-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.channel-card {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.2) 0%, rgba(220, 20, 60, 0.2) 100%);
    border: 3px solid var(--christmas-gold);
    border-radius: 25px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    transition: all 0.4s ease;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.channel-card::before {
    content: '🎁';
    position: absolute;
    bottom: -30px;
    right: -30px;
    font-size: 8rem;
    opacity: 0.1;
    z-index: 0;
    animation: float 5s ease-in-out infinite;
}

.channel-card:hover {
    transform: translateY(-15px) scale(1.05);
    box-shadow: 0 30px 70px rgba(255, 215, 0, 0.5);
    border-color: var(--christmas-gold);
}

.channel-icon {
    font-size: 4.5rem;
    margin: 20px 0;
    filter: drop-shadow(0 0 25px rgba(255, 215, 0, 0.8));
    position: relative;
    z-index: 1;
    animation: iconFloat 3s ease-in-out infinite;
}

.channel-card h3 {
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--text-primary);
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.channel-card p {
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

.channel-features {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
}

.channel-features span {
    background: rgba(0, 0, 0, 0.4);
    padding: 8px 15px;
    border-radius: 15px;
    font-size: 0.85rem;
    color: var(--text-primary);
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.btn-channel {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.2), rgba(220, 20, 60, 0.2));
    color: var(--text-primary);
    padding: 12px 30px;
    font-size: 1rem;
    font-weight: 800;
    border-radius: 25px;
    border: 2px solid var(--christmas-gold);
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    display: inline-block;
}

.btn-channel:hover {
    background: linear-gradient(135deg, var(--christmas-gold), #FFA500);
    color: #0A0E27;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.5);
}

/* FAQ Quick Section */
.faq-quick-section {
    padding: 100px 0;
    position: relative;
    z-index: 10;
    background: linear-gradient(135deg, #1a1f3a 0%, #0A0E27 50%, #1a1f3a 100%);
}

.faq-quick-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.faq-quick-card {
    background: linear-gradient(135deg, rgba(10, 14, 39, 0.95), rgba(26, 31, 58, 0.95));
    border: 3px solid rgba(255, 215, 0, 0.5);
    border-radius: 25px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    transition: all 0.4s ease;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.faq-quick-card::before {
    content: '🎁';
    position: absolute;
    bottom: -30px;
    right: -30px;
    font-size: 8rem;
    opacity: 0.1;
    z-index: 0;
    animation: float 5s ease-in-out infinite;
}

.faq-quick-card:hover {
    transform: translateY(-15px);
    border-color: var(--christmas-gold);
    box-shadow: 0 30px 70px rgba(255, 215, 0, 0.5);
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.2) 0%, rgba(220, 20, 60, 0.2) 100%);
}

.faq-quick-icon {
    font-size: 4rem;
    margin: 20px 0;
    filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.8));
    position: relative;
    z-index: 1;
}

.faq-quick-card h3 {
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--text-primary);
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.faq-quick-card p {
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

.faq-link {
    color: var(--christmas-gold);
    font-weight: 800;
    text-decoration: none;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.faq-link:hover {
    color: #FFA500;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.8);
}

/* Response Time Section */
.response-time-section {
    padding: 100px 0;
    position: relative;
    z-index: 10;
    background: linear-gradient(135deg, #0A0E27 0%, #1a1f3a 50%, #0A0E27 100%);
}

.response-timeline {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.response-item {
    display: flex;
    gap: 30px;
    align-items: center;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.2) 0%, rgba(220, 20, 60, 0.2) 100%);
    border: 3px solid var(--christmas-gold);
    border-radius: 25px;
    padding: 40px;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
}

.response-item::before {
    content: '🎁';
    position: absolute;
    bottom: -25px;
    right: -25px;
    font-size: 7rem;
    opacity: 0.1;
    z-index: 0;
    animation: float 5s ease-in-out infinite;
}

.response-item:hover {
    transform: translateX(15px);
    box-shadow: 0 30px 70px rgba(255, 215, 0, 0.5);
}

.response-time-badge {
    background: linear-gradient(135deg, var(--christmas-gold), #FFA500);
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    flex-shrink: 0;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.5);
    border: 4px solid var(--christmas-gold);
    position: relative;
    z-index: 1;
}

.response-content {
    flex: 1;
    position: relative;
    z-index: 1;
}

.response-content h3 {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--text-primary);
    margin-bottom: 15px;
}

.response-time-value {
    font-size: 2.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--christmas-gold), #FFA500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
}

.response-content p {
    color: var(--text-secondary);
    margin-bottom: 15px;
    line-height: 1.7;
}

.response-badge {
    background: rgba(255, 215, 0, 0.2);
    padding: 8px 20px;
    border-radius: 20px;
    color: var(--christmas-gold);
    font-weight: 800;
    font-size: 0.9rem;
    border: 2px solid rgba(255, 215, 0, 0.3);
    display: inline-block;
}

/* Support Team Section */
.support-team-section {
    padding: 100px 0;
    position: relative;
    z-index: 10;
    background: linear-gradient(135deg, #1a1f3a 0%, #0A0E27 50%, #1a1f3a 100%);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.team-member-card {
    background: linear-gradient(135deg, rgba(10, 14, 39, 0.95), rgba(26, 31, 58, 0.95));
    border: 3px solid rgba(255, 215, 0, 0.5);
    border-radius: 25px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    transition: all 0.4s ease;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.team-member-card::before {
    content: '🎁';
    position: absolute;
    bottom: -30px;
    right: -30px;
    font-size: 8rem;
    opacity: 0.1;
    z-index: 0;
    animation: float 5s ease-in-out infinite;
}

.team-member-card:hover {
    transform: translateY(-15px) scale(1.05);
    border-color: var(--christmas-gold);
    box-shadow: 0 30px 70px rgba(255, 215, 0, 0.5);
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.2) 0%, rgba(220, 20, 60, 0.2) 100%);
}

.member-icon {
    font-size: 4.5rem;
    margin: 20px 0;
    filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.8));
    position: relative;
    z-index: 1;
}

.team-member-card h3 {
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--text-primary);
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.team-member-card p {
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

.member-stats {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.member-stats span {
    background: rgba(255, 215, 0, 0.2);
    padding: 6px 12px;
    border-radius: 12px;
    font-size: 0.85rem;
    color: var(--text-primary);
    border: 1px solid rgba(255, 215, 0, 0.3);
}

/* Form Tips Section */
.form-tips-section {
    padding: 100px 0;
    position: relative;
    z-index: 10;
    background: linear-gradient(135deg, #0A0E27 0%, #1a1f3a 50%, #0A0E27 100%);
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.tip-card {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.2) 0%, rgba(220, 20, 60, 0.2) 100%);
    border: 3px solid var(--christmas-gold);
    border-radius: 25px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    transition: all 0.4s ease;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.tip-card::before {
    content: '🎁';
    position: absolute;
    bottom: -30px;
    right: -30px;
    font-size: 8rem;
    opacity: 0.1;
    z-index: 0;
    animation: float 5s ease-in-out infinite;
}

.tip-card:hover {
    transform: translateY(-15px) scale(1.05);
    box-shadow: 0 30px 70px rgba(255, 215, 0, 0.5);
    border-color: var(--christmas-gold);
}

.tip-number {
    position: absolute;
    top: -20px;
    left: 30px;
    background: linear-gradient(135deg, var(--christmas-gold), #FFA500);
    color: #0A0E27;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 1.8rem;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.5);
    border: 4px solid var(--christmas-gold);
    z-index: 5;
}

.tip-icon {
    font-size: 4rem;
    margin: 30px 0 20px;
    filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.8));
    position: relative;
    z-index: 1;
}

.tip-card h3 {
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--text-primary);
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.tip-card p {
    color: var(--text-secondary);
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

/* Emergency Contact Section */
.emergency-contact-section {
    padding: 100px 0;
    position: relative;
    z-index: 10;
    background: linear-gradient(135deg, #1a1f3a 0%, #0A0E27 50%, #1a1f3a 100%);
}

.emergency-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.emergency-card {
    background: linear-gradient(135deg, rgba(220, 20, 60, 0.3) 0%, rgba(139, 0, 0, 0.3) 100%);
    border: 3px solid var(--christmas-gold);
    border-radius: 25px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    transition: all 0.4s ease;
    box-shadow: 0 20px 50px rgba(220, 20, 60, 0.4);
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.emergency-card::before {
    content: '🎁';
    position: absolute;
    bottom: -30px;
    right: -30px;
    font-size: 8rem;
    opacity: 0.1;
    z-index: 0;
    animation: float 5s ease-in-out infinite;
}

.emergency-card:hover {
    transform: translateY(-15px) scale(1.05);
    box-shadow: 0 30px 70px rgba(220, 20, 60, 0.6);
    border-color: var(--christmas-gold);
}

.emergency-icon {
    font-size: 4.5rem;
    margin: 20px 0;
    filter: drop-shadow(0 0 25px rgba(220, 20, 60, 1));
    position: relative;
    z-index: 1;
    animation: iconFloat 3s ease-in-out infinite;
}

.emergency-card h3 {
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--text-primary);
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.emergency-card p {
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

.emergency-priority {
    background: rgba(220, 20, 60, 0.3);
    padding: 10px 20px;
    border-radius: 20px;
    color: var(--text-primary);
    font-weight: 800;
    font-size: 0.9rem;
    border: 2px solid rgba(220, 20, 60, 0.5);
    display: inline-block;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.btn-emergency {
    background: linear-gradient(135deg, #DC143C, #8B0000);
    color: var(--text-primary);
    padding: 15px 35px;
    font-size: 1.1rem;
    font-weight: 900;
    border-radius: 25px;
    border: 2px solid var(--christmas-gold);
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-emergency:hover {
    background: linear-gradient(135deg, #8B0000, #DC143C);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(220, 20, 60, 0.6);
}

/* Feedback Section */
.feedback-section {
    padding: 100px 0;
    position: relative;
    z-index: 10;
    background: linear-gradient(135deg, #0A0E27 0%, #1a1f3a 50%, #0A0E27 100%);
}

.feedback-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.feedback-card {
    background: linear-gradient(135deg, rgba(10, 14, 39, 0.95), rgba(26, 31, 58, 0.95));
    border: 3px solid rgba(255, 215, 0, 0.5);
    border-radius: 25px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    transition: all 0.4s ease;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.feedback-card::before {
    content: '🎁';
    position: absolute;
    bottom: -30px;
    right: -30px;
    font-size: 8rem;
    opacity: 0.1;
    z-index: 0;
    animation: float 5s ease-in-out infinite;
}

.feedback-card:hover {
    transform: translateY(-15px) scale(1.05);
    border-color: var(--christmas-gold);
    box-shadow: 0 30px 70px rgba(255, 215, 0, 0.5);
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.2) 0%, rgba(220, 20, 60, 0.2) 100%);
}

.feedback-icon {
    font-size: 4.5rem;
    margin: 20px 0;
    filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.8));
    position: relative;
    z-index: 1;
}

.feedback-card h3 {
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--text-primary);
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.feedback-card p {
    color: var(--text-secondary);
    margin-bottom: 25px;
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

.btn-feedback {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.2), rgba(220, 20, 60, 0.2));
    color: var(--text-primary);
    padding: 12px 30px;
    font-size: 1rem;
    font-weight: 800;
    border-radius: 25px;
    border: 2px solid var(--christmas-gold);
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    display: inline-block;
    text-decoration: none;
}

.btn-feedback:hover {
    background: linear-gradient(135deg, var(--christmas-gold), #FFA500);
    color: #0A0E27;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.5);
}

/* Social Media Section */
.social-media-section {
    padding: 100px 0;
    position: relative;
    z-index: 10;
    background: linear-gradient(135deg, #1a1f3a 0%, #0A0E27 50%, #1a1f3a 100%);
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.social-card {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.2) 0%, rgba(220, 20, 60, 0.2) 100%);
    border: 3px solid var(--christmas-gold);
    border-radius: 25px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    transition: all 0.4s ease;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.social-card::before {
    content: '🎁';
    position: absolute;
    bottom: -30px;
    right: -30px;
    font-size: 8rem;
    opacity: 0.1;
    z-index: 0;
    animation: float 5s ease-in-out infinite;
}

.social-card:hover {
    transform: translateY(-15px) scale(1.05);
    box-shadow: 0 30px 70px rgba(255, 215, 0, 0.5);
    border-color: var(--christmas-gold);
}

.social-icon {
    font-size: 4.5rem;
    margin: 20px 0;
    filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.8));
    position: relative;
    z-index: 1;
}

.social-card h3 {
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--text-primary);
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.social-card p {
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

.social-followers {
    background: rgba(255, 215, 0, 0.2);
    padding: 10px 20px;
    border-radius: 20px;
    color: var(--christmas-gold);
    font-weight: 800;
    font-size: 0.9rem;
    border: 2px solid rgba(255, 215, 0, 0.3);
    display: inline-block;
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
}

.btn-social {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.2), rgba(220, 20, 60, 0.2));
    color: var(--text-primary);
    padding: 12px 30px;
    font-size: 1rem;
    font-weight: 800;
    border-radius: 25px;
    border: 2px solid var(--christmas-gold);
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    display: inline-block;
    text-decoration: none;
}

.btn-social:hover {
    background: linear-gradient(135deg, var(--christmas-gold), #FFA500);
    color: #0A0E27;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.5);
}

/* Additional Contact Info */
.additional-contact-info {
    padding: 100px 0;
    position: relative;
    z-index: 10;
    background: linear-gradient(135deg, #0A0E27 0%, #1a1f3a 50%, #0A0E27 100%);
}

.info-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.info-card {
    background: linear-gradient(135deg, rgba(10, 14, 39, 0.95), rgba(26, 31, 58, 0.95));
    border: 3px solid var(--christmas-gold);
    border-radius: 25px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    transition: all 0.4s ease;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.info-card::before {
    content: '🎁';
    position: absolute;
    bottom: -30px;
    right: -30px;
    font-size: 8rem;
    opacity: 0.1;
    z-index: 0;
    animation: float 5s ease-in-out infinite;
}

.info-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 70px rgba(255, 215, 0, 0.5);
    border-color: var(--christmas-gold);
}

.info-icon {
    font-size: 4.5rem;
    margin: 20px 0;
    filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.8));
    position: relative;
    z-index: 1;
}

.info-card h3 {
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--text-primary);
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.info-card p {
    color: var(--text-secondary);
    line-height: 1.8;
    position: relative;
    z-index: 1;
}

/* Responsive Design */
@media (max-width: 768px) {
    .present-hero h1 {
        font-size: 2.5rem;
    }
    
    .present-hero p {
        font-size: 1.1rem;
    }
    
    .present-icon-large {
        font-size: 5rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .channels-grid,
    .faq-quick-grid,
    .team-grid,
    .tips-grid,
    .emergency-grid,
    .feedback-grid,
    .social-grid,
    .info-cards {
        grid-template-columns: 1fr;
    }
    
    .response-item {
        flex-direction: column;
        text-align: center;
    }
    
    .response-time-badge {
        margin-bottom: 20px;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
}

/* Value Cards with Elf Theme */
.values-section {
    position: relative;
    z-index: 10;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.value-card {
    background: linear-gradient(135deg, rgba(34, 139, 34, 0.2) 0%, rgba(22, 101, 22, 0.2) 100%);
    border: 3px solid var(--christmas-gold);
    border-radius: 25px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    transition: all 0.4s ease;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.value-card::before {
    content: '🧝';
    position: absolute;
    bottom: -25px;
    right: -25px;
    font-size: 6rem;
    opacity: 0.1;
    z-index: 0;
    animation: float 4s ease-in-out infinite;
}

.value-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 60px rgba(255, 215, 0, 0.5);
    border-color: var(--christmas-gold);
}

.value-icon {
    font-size: 4rem;
    margin: 20px 0;
    filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.8));
    position: relative;
    z-index: 1;
}

.value-card h3 {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.value-card p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 0.95rem;
    position: relative;
    z-index: 1;
}

/* About Story Section */
.about-content-section {
    padding: 100px 0;
    position: relative;
    z-index: 10;
}

.about-story {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.story-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    border: 3px solid var(--christmas-gold);
}

.story-image::before {
    content: '🧝';
    position: absolute;
    top: -15px;
    right: -15px;
    font-size: 4rem;
    z-index: 5;
    filter: drop-shadow(0 0 20px rgba(34, 139, 34, 1));
    animation: badgePulse 2s ease-in-out infinite;
}

.story-image img {
    width: 100%;
    height: auto;
    display: block;
}

.story-text h2 {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--text-primary);
    margin-bottom: 25px;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.6);
}

.story-text p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 1rem;
}

/* Stats Section */
.stats-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a1f3a 0%, #0A0E27 50%, #1a1f3a 100%);
    position: relative;
    z-index: 10;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.stat-card {
    background: linear-gradient(135deg, rgba(34, 139, 34, 0.2) 0%, rgba(22, 101, 22, 0.2) 100%);
    border: 3px solid var(--christmas-gold);
    border-radius: 25px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    transition: all 0.4s ease;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.stat-card::before {
    content: '🧝';
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 2.5rem;
    opacity: 0.3;
    z-index: 0;
    animation: badgePulse 2s ease-in-out infinite;
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(255, 215, 0, 0.5);
    border-color: var(--christmas-gold);
}

.stat-number-large {
    font-size: 3.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--christmas-gold), #FFA500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.stat-label-large {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    z-index: 1;
}

@media (max-width: 768px) {
    .about-story {
        grid-template-columns: 1fr;
    }
    
    .story-image::before {
        top: -10px;
        right: -10px;
        font-size: 3rem;
    }
}
