:root {
    --bg-dark: #0a0e17;
    --bg-card: #131a26;
    --accent-yellow: #FFD600;
    --accent-blue: #00D2FF;
    --text-white: #ffffff;
    --text-gray: #b0b8c4;
    --font-head: 'Teko', sans-serif;
    --font-body: 'Inter', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-white);
    font-family: var(--font-body);
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background-image: repeating-linear-gradient(
        45deg,
        rgba(255, 255, 255, 0.02) 0px,
        rgba(255, 255, 255, 0.02) 1px,
        transparent 1px,
        transparent 20px
    );
}

h1, h2, h3 {
    font-family: var(--font-head);
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.1;
}

.highlight-yellow { color: var(--accent-yellow); }
.highlight-blue { color: var(--accent-blue); }

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-weight: 800;
    border-radius: 50px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background-color: var(--accent-yellow);
    color: #000;
    padding: 16px 40px;
    font-size: 1.2rem;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(255, 214, 0, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 6px 20px rgba(255, 214, 0, 0.5);
    background-color: #ffe033;
}

.btn-nav {
    background-color: red;
    color: #fff;
    padding: 10px 24px;
    font-size: 0.9rem;
    box-shadow: 0 0 10px rgba(255, 0, 0, 0.4);
}

.btn-nav:hover {
    background-color: #ff3333;
    color: #fff !important;
    box-shadow: 0 0 15px rgba(255, 0, 0, 0.7);
    transition: all 0.3s ease;
}

header {
    background: rgba(10, 14, 23, 0.95);
    width: 100%;
    padding: 20px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-head);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-white);
    text-decoration: none;
}

.logo i { color: var(--accent-yellow); }

nav ul {
    display: flex;
    gap: 30px;
    list-style: none;
    align-items: center;
}

.nav-links { display: flex; align-items: center; gap: 30px; }

.nav-links a {
    color: var(--text-white);
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.nav-links a:hover, .nav-links a.active { color: var(--accent-yellow); }

.mobile-toggle { display: none; font-size: 1.5rem; color: white; cursor: pointer; }

main { 
    flex: 1; 
    display: flex; 
    flex-direction: column; 
    position: relative;
}

.container { max-width: 1200px; margin: 0 auto; padding: 40px 20px; width: 100%; }
.page-header { text-align: center; margin-bottom: 50px; padding-top: 40px; }
.page-header h1 { font-size: 4rem; color: var(--accent-yellow); }
.page-header p { color: var(--text-gray); font-size: 1.2rem; }

.hero {
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
}

.mascot-img {
    height: 280px;
    width: auto;
    margin-bottom: -20px;
    filter: drop-shadow(0 0 5px rgba(0, 210, 255, 0.3));
    animation: float 4s ease-in-out infinite;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

.hero h1 { font-size: 5rem; text-shadow: 0 0 25px rgba(255, 214, 0, 0.4); margin-bottom: 10px; }
.hero p { font-size: 1.2rem; color: var(--text-gray); margin-bottom: 40px; }

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.card {
    background-color: var(--bg-card);
    border-radius: 20px;
    padding: 25px;
    border: 1px solid rgba(255,255,255,0.05);
    transition: all 0.3s ease;
    position: relative;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border-color: rgba(0, 210, 255, 0.3);
}

.section-separator {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin: 60px 0;
}

.section-separator .bar {
    height: 2.5px;
    width: 100%;
    max-width: 600px;
    background: rgba(255,255,255,0.3);
    border-radius: 5px;
}

.section-separator .icon {
    color: var(--accent-yellow);
    font-size: 22px;
    background: rgba(255,255,255,0.12);
    padding: 10px 12px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-top {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
}

.partner-img {
    height: 80px;
    padding: 8px;
}

.partner-name {
    color: var(--accent-yellow);
    font-weight: 700;
    font-size: 1.1rem;
    text-align: center;
    color: var(--text-white);
}

.benefit-row { display: flex; align-items: center; gap: 10px; color: var(--text-gray); margin-bottom: 8px; font-size: 0.95rem; }
.benefit-row i { color: var(--accent-blue); }

.code-area { margin: 20px 0; }
.code-label { font-size: 0.8rem; color: var(--accent-yellow); font-weight: 700; margin-bottom: 5px; display: block; }
.code-box {
    display: flex; justify-content: space-between; align-items: center;
    background: rgba(0,0,0,0.3); border: 1px dashed var(--accent-blue);
    padding: 12px 15px; border-radius: 8px; cursor: pointer; transition: background 0.2s;
}
.code-box:hover { background: rgba(0, 210, 255, 0.1); }
.code-text { font-family: monospace; font-size: 1.1rem; letter-spacing: 1px; }

.card-actions { display: flex; gap: 10px; }
.btn-claim { flex: 1; background-color: var(--accent-yellow); color: #000; padding: 12px; border-radius: 10px; font-weight: 700; text-align: center; text-decoration: none; transition: 0.3s; }
.btn-claim:hover { background-color: #ffe033; }
.btn-info { width: 45px; height: 45px; border-radius: 50%; border: 2px solid var(--accent-blue); color: var(--accent-blue); display: flex; align-items: center; justify-content: center; background: transparent; cursor: pointer; transition: 0.3s; }
.btn-info:hover { background: var(--accent-blue); color: #fff; }

.giveaway-content { text-align: center; max-width: 800px; margin: 0 auto; position: relative; }
.giveaway-desc { margin: 30px auto; line-height: 1.6; color: var(--text-gray); font-size: 1.1rem; }

.counter-wrapper { display: flex; justify-content: center; gap: 10px; margin: 40px 0; flex-wrap: wrap; }
.digit-box {
    background: #131a26; border: 1px solid var(--accent-blue); box-shadow: 0 0 10px rgba(0, 210, 255, 0.2);
    color: #fff; font-family: var(--font-head); font-size: 4rem; width: 70px; height: 90px;
    border-radius: 12px; display: flex; align-items: center; justify-content: center;
}
.currency-box { color: var(--accent-yellow); border-color: var(--accent-yellow); box-shadow: 0 0 10px rgba(255, 214, 0, 0.2); }

.stats-row { display: flex; justify-content: center; gap: 50px; margin-top: 60px; flex-wrap: wrap; }
.stat-col { text-align: center; }
.stat-num { display: block; font-family: var(--font-head); font-size: 2.5rem; color: #fff; }
.stat-label { color: var(--text-gray); font-size: 0.9rem; margin-top: 5px; }

.floating-item { position: absolute; width: 150px; opacity: 0.8; z-index: -1; }
.item-left { top: 0; left: -100px; transform: rotate(-15deg); }
.item-right { bottom: 0; right: -100px; transform: rotate(15deg); }

.snow-area {
	position: absolute;
	inset: 0;
	pointer-events: none;
	overflow: hidden;
	z-index: 5;
}

.snowflake {
	position: absolute;
	top: -10vh;
	pointer-events: none;
	will-change: transform, opacity;
	opacity: 0.8;
	filter: drop-shadow(0 1px 0 rgba(0,0,0,0.05));
	animation-name: fall;
	animation-timing-function: linear;
	animation-fill-mode: forwards;
}

@keyframes fall {
	0% {
		transform: translateY(-10vh) translateX(calc(-1 * var(--sway, 20px))) rotate(0deg);
		opacity: var(--start-opacity, 0.8);
	}
	50% {
		transform: translateY(50vh) translateX(calc(var(--sway, 20px))) rotate(180deg);
		opacity: calc(var(--start-opacity, 0.8) - 0.15);
	}
	100% {
		transform: translateY(110vh) translateX(calc(-0.5 * var(--sway, 20px))) rotate(360deg);
		opacity: 0.15;
	}
}

@media (max-width: 420px) {
	.snow-area { z-index: 3; }
}

footer { background-color: #05070c; padding: 40px 5%; text-align: center; margin-top: auto; }
.footer-socials { margin: 20px 0; }
.footer-socials a { color: var(--text-gray); font-size: 1.5rem; margin: 0 10px; transition: color 0.3s; }
.footer-socials a:hover { color: var(--accent-yellow); }
.disclaimer { font-size: 0.75rem; color: #4a5568; max-width: 800px; margin: 20px auto 0; }

@media (max-width: 768px) {
    .nav-links { display: none; }
    .nav-links.mobile-active {
        display: flex; flex-direction: column; position: absolute; top: 70px; left: 0;
        width: 100%; background: var(--bg-dark); padding: 20px; border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    .mobile-toggle { display: block; }
    .hero h1 { font-size: 3.5rem; }
    .mascot-img { height: 180px; }
    .floating-item { display: none; }
    .digit-box { width: 40px; height: 60px; font-size: 2rem; }
    .page-header h1 { font-size: 3rem; }
}