@charset "utf-8";
/* CSS Document 

TemplateMo 602 Graph Page

https://templatemo.com/tm-602-graph-page

*/

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
	background: #0a0e27;
	color: #ffffff;
	overflow-x: hidden;
}

/* Navigation */
nav {
	position: fixed;
	top: 0;
	width: 100%;
	padding: 20px 50px;
	background: rgba(10, 14, 39, 0.95);
	backdrop-filter: blur(10px);
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	z-index: 1000;
	transition: all 0.3s ease;
}

nav.scrolled {
	padding: 15px 50px;
	background: rgba(10, 14, 39, 0.98);
}

.nav-container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	max-width: 1400px;
	margin: 0 auto;
}

.logo {
	display: flex;
	align-items: center;
	gap: 15px;
	cursor: pointer;
	text-decoration: none;
}

.logo-icon {
	width: 40px;
	height: 40px;
	background: linear-gradient(135deg, #00ffcc 0%, #00ccff 100%);
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	box-shadow: 0 0 20px rgba(0, 255, 204, 0.3);
}

.logo-icon svg {
	width: 24px;
	height: 24px;
	fill: #0a0e27;
}

.logo-text {
	font-size: 20px;
	font-weight: 700;
	background: linear-gradient(135deg, #ffffff 0%, #00ffcc 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.nav-links {
	display: flex;
	gap: 40px;
	list-style: none;
}

.nav-links a {
	color: #ffffff;
	text-decoration: none;
	font-size: 16px;
	transition: color 0.3s ease;
	position: relative;
}

.nav-links a::before {
	content: '';
	position: absolute;
	bottom: -8px;
	left: 50%;
	width: 0;
	height: 3px;
	background: linear-gradient(90deg, #ff6b6b, #ff8e53);
	transition: all 0.3s ease;
	transform: translateX(-50%);
	border-radius: 2px;
}

.nav-links a:hover {
	color: #ff8e53;
	text-shadow: 0 0 10px rgba(255, 107, 107, 0.5);
}

.nav-links a:hover::before {
	width: 100%;
}

.nav-links a.active::after {
	content: '';
	position: absolute;
	bottom: -8px;
	left: 50%;
	width: 100%;
	height: 3px;
	background: linear-gradient(90deg, #00ffcc, #00ccff);
	transform: translateX(-50%);
	box-shadow: 0 0 15px rgba(0, 255, 204, 0.6);
	border-radius: 2px;
}

.search-icon {
	width: 24px;
	height: 24px;
	cursor: pointer;
	transition: transform 0.3s ease;
	fill: white;
}

.search-icon:hover {
	transform: scale(1.1);
}

/* Hero Section */
.hero {
	position: relative;
	min-height: 70vh;
	display: flex;
	align-items: center;
	overflow: hidden;
	background: linear-gradient(135deg, #0a0e27 0%, #1a1f3a 100%);
}

.hero-bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0.4;
	background-image:
		linear-gradient(45deg, transparent 30%, rgba(0, 255, 204, 0.1) 50%, transparent 70%),
		linear-gradient(-45deg, transparent 30%, rgba(255, 0, 128, 0.1) 50%, transparent 70%);
	animation: bgShift 20s ease-in-out infinite;
}

@keyframes bgShift {

	0%,
	100% {
		transform: translate(0, 0);
	}

	50% {
		transform: translate(-20px, -20px);
	}
}

.geometric-shapes {
	position: absolute;
	width: 100%;
	height: 100%;
	overflow: hidden;
}

.shape {
	position: absolute;
	border: 2px solid rgba(0, 255, 204, 0.3);
}

.shape1 {
	width: 300px;
	height: 300px;
	top: 10%;
	left: -150px;
	transform: rotate(45deg);
	animation: float 15s ease-in-out infinite;
}

.shape2 {
	width: 200px;
	height: 200px;
	top: 60%;
	right: -100px;
	border-color: rgba(255, 0, 128, 0.3);
	animation: float 20s ease-in-out infinite reverse;
}

.shape3 {
	width: 150px;
	height: 150px;
	bottom: 20%;
	left: 10%;
	border-color: rgba(0, 204, 255, 0.3);
	transform: rotate(30deg);
	animation: float 18s ease-in-out infinite;
}

.shape4 {
	width: 250px;
	height: 250px;
	top: 15%;
	right: 5%;
	border-color: rgba(255, 0, 128, 0.25);
	transform: rotate(45deg);
	animation: float 16s ease-in-out infinite;
}

.shape5 {
	width: 180px;
	height: 180px;
	top: 55%;
	right: 12%;
	border-color: rgba(0, 255, 204, 0.25);
	transform: rotate(-30deg);
	animation: float 22s ease-in-out infinite reverse;
}

.shape6 {
	width: 120px;
	height: 120px;
	bottom: 15%;
	right: 8%;
	border-color: rgba(0, 204, 255, 0.25);
	transform: rotate(20deg);
	animation: float 19s ease-in-out infinite;
}

.hero-content {
	position: relative;
	z-index: 10;
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 50px;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: center;
}

.hero-text {
	animation: slideInLeft 1s ease-out;
}

@keyframes slideInLeft {
	from {
		opacity: 0;
		transform: translateX(-50px);
	}

	to {
		opacity: 1;
		transform: translateX(0);
	}
}

.hero-text h1 {
	font-size: 64px;
	font-weight: 700;
	line-height: 1.1;
	margin-bottom: 30px;
	background: linear-gradient(135deg, #ffffff 0%, #00ffcc 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.hero-text p {
	font-size: 18px;
	line-height: 1.6;
	color: #a0a0a0;
	margin-bottom: 40px;
	max-width: 500px;
}

.cta-button {
	display: inline-block;
	padding: 15px 40px;
	background: linear-gradient(135deg, #ff6b6b, #ff8e53);
	color: white;
	text-decoration: none;
	border-radius: 30px;
	font-size: 16px;
	font-weight: 600;
	transition: all 0.3s ease;
	box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
	border: none;
	cursor: pointer;
}

.cta-button:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(255, 107, 107, 0.4);
}

/* --- Примусові стилі для фото --- */
.hero-visual {
    width: 420px !important;
    height: 360px !important;
    border-radius: 30px !important;
    overflow: hidden !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3) !important;
    border: 3px solid #00ffcc !important;
    transition: all 0.3s ease !important;
}

.hero-visual img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    display: block !important;
    border-radius: 0 !important;
    image-rendering: auto !important;
    image-rendering: crisp-edges !important;
    image-rendering: high-quality !important;
}

.hero-visual:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4) !important;
    border-color: #00ffcc !important;
}

@media (max-width: 1024px) {
    .hero-visual {
        width: 360px !important;
        height: 300px !important;
        border-radius: 24px !important;
    }
}

@media (max-width: 768px) {
    .hero-visual {
        width: 300px !important;
        height: 260px !important;
        margin: 0 auto !important;
    }
}

@media (max-width: 480px) {
    .hero-visual {
        width: 260px !important;
        height: 220px !important;
    }
}





@keyframes slideInRight {
	from {
		opacity: 0;
		transform: translateX(50px);
	}

	to {
		opacity: 1;
		transform: translateX(0);
	}
}

.city-container {
	position: relative;
	width: 100%;
	height: 400px;
	perspective: 1000px;
}

.building {
	position: absolute;
	background: linear-gradient(180deg, #1a1f3a 0%, #0a0e27 100%);
	border: 1px solid rgba(0, 255, 204, 0.2);
	box-shadow:
		0 0 20px rgba(0, 255, 204, 0.1),
		inset 0 0 20px rgba(0, 255, 204, 0.05);
	overflow: hidden;
}

/* Building fill effect */
.building-fill {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	animation: pulse 3s ease-in-out infinite;
}

.building1 {
	width: 60px;
	height: 250px;
	bottom: 0;
	left: 20%;
}

.building1 .building-fill {
	height: 45%;
	background: linear-gradient(180deg, transparent 0%, rgba(0, 255, 204, 0.6) 100%);
}

.building2 {
	width: 80px;
	height: 320px;
	bottom: 0;
	left: 35%;
}

.building2 .building-fill {
	height: 60%;
	background: linear-gradient(180deg, transparent 0%, rgba(255, 0, 128, 0.6) 100%);
	animation-delay: 0.5s;
}

.building3 {
	width: 100px;
	height: 280px;
	bottom: 0;
	right: 25%;
}

.building3 .building-fill {
	height: 35%;
	background: linear-gradient(180deg, transparent 0%, rgba(0, 204, 255, 0.6) 100%);
	animation-delay: 1s;
}

.building4 {
	width: 70px;
	height: 200px;
	bottom: 0;
	right: 10%;
}

.building4 .building-fill {
	height: 50%;
	background: linear-gradient(180deg, transparent 0%, rgba(255, 107, 107, 0.6) 100%);
	animation-delay: 1.5s;
}

@keyframes pulse {

	0%,
	100% {
		opacity: 0.6;
		transform: translateY(0);
	}

	50% {
		opacity: 1;
		transform: translateY(-5px);
	}
}

/* Building windows */
.building-windows {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 100%;
	background: repeating-linear-gradient(0deg,
			transparent,
			transparent 8px,
			rgba(255, 255, 255, 0.05) 8px,
			rgba(255, 255, 255, 0.05) 10px);
	opacity: 0.8;
}

.neon-line {
	position: absolute;
	height: 2px;
	background: linear-gradient(90deg, transparent, #00ffcc, transparent);
	animation: scan 3s linear infinite;
}

.neon-line1 {
	width: 100px;
	top: 30%;
	left: 10%;
}

.neon-line2 {
	width: 150px;
	top: 50%;
	right: 15%;
	animation-delay: 1s;
}

@keyframes scan {
	0% {
		transform: translateX(-100%);
		opacity: 0;
	}

	50% {
		opacity: 1;
	}

	100% {
		transform: translateX(200%);
		opacity: 0;
	}
}

/* Dashboard Section */
.dashboard-section {
	padding: 80px 50px;
	background: linear-gradient(180deg, #0a0e27 0%, #0f1329 100%);
}

.dashboard-container {
	max-width: 1400px;
	margin: 0 auto;
}

.section-title {
	font-size: 36px;
	margin-bottom: 40px;
	text-align: center;
	background: linear-gradient(135deg, #ffffff 0%, #00ffcc 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

/* Game Cards Styles - повністю сумісний */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.stat-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(0, 255, 204, 0.3);
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #00ffcc, transparent);
    animation: scan 3s linear infinite;
    pointer-events: none;
}

@keyframes scan {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

/* Game Image */
.game-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
    background: #0a0e27;
}

.game-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
    display: block;
}

.stat-card:hover .game-image img {
    transform: scale(1.05);
}

/* Game Info */
.game-info {
    padding: 20px;
    text-align: center;
}

.game-title {
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #ffffff 0%, #00ffcc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Play Button */
.game-btn {
    display: inline-block;
    background: linear-gradient(135deg, #d43f1f, #f5b042);
    color: #ffffff;
    text-decoration: none;
    padding: 10px 28px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.game-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(212, 63, 31, 0.4);
    color: #ffffff;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .stats-grid {
        gap: 20px;
    }
    
    .game-image {
        height: 180px;
    }
    
    .game-info {
        padding: 15px;
    }
    
    .game-title {
        font-size: 16px;
    }
    
    .game-btn {
        padding: 8px 20px;
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        gap: 15px;
    }
    
    .game-image {
        height: 160px;
    }
    
    .game-info {
        padding: 12px;
    }
    
    .game-title {
        font-size: 14px;
        margin-bottom: 10px;
    }
    
    .game-btn {
        padding: 7px 18px;
        font-size: 12px;
    }
}
.game-image-link {
    display: block;
    text-decoration: none;
    width: 100%;
}

.game-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
    background: #0a0e27;
}

.game-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
    display: block;
}

.stat-card:hover .game-image img {
    transform: scale(1.05);
}

.game-info {
    padding: 20px;
    text-align: center;
}

.game-title {
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #ffffff 0%, #00ffcc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.game-btn {
    display: inline-block;
    background: linear-gradient(135deg, #d43f1f, #f5b042);
    color: #ffffff;
    text-decoration: none;
    padding: 10px 28px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.game-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(212, 63, 31, 0.4);
    color: #ffffff;
}
/* Analytics Section */
.analytics-section {
	padding: 80px 50px;
	background: linear-gradient(180deg, #0f1329 0%, #1a1f3a 100%);
}

/* Chart Cards */
.charts-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
	gap: 30px;
	margin-bottom: 60px;
}

.chart-card {
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 20px;
	padding: 30px;
	position: relative;
	min-height: 400px;
}

.chart-card:hover {
	background: rgba(255, 255, 255, 0.05);
}

.chart-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 30px;
}

.chart-title {
	font-size: 20px;
	font-weight: 600;
}

.chart-options {
	display: flex;
	gap: 10px;
}

.chart-option {
	padding: 8px 16px;
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 8px;
	font-size: 12px;
	cursor: pointer;
	transition: all 0.3s ease;
}

.chart-option:hover,
.chart-option.active {
	background: rgba(0, 255, 204, 0.1);
	border-color: rgba(0, 255, 204, 0.3);
	color: #00ffcc;
}

.chart-container {
	position: relative;
	height: 300px;
}

/* Bar Chart */
.bar-chart {
	display: flex;
	align-items: flex-end;
	justify-content: space-around;
	height: 100%;
	padding: 20px 0;
}

.bar {
	width: 30px;
	background: linear-gradient(180deg, #00ffcc 0%, #00ccff 100%);
	border-radius: 5px 5px 0 0;
	position: relative;
	transition: all 0.3s ease;
	cursor: pointer;
}

.bar:hover {
	transform: scaleY(1.05);
	filter: brightness(1.2);
}

.bar-label {
	position: absolute;
	bottom: -25px;
	left: 50%;
	transform: translateX(-50%);
	font-size: 11px;
	color: #707070;
}

.bar-value {
	position: absolute;
	top: -25px;
	left: 50%;
	transform: translateX(-50%);
	font-size: 12px;
	font-weight: 600;
	color: #00ffcc;
	opacity: 0;
	transition: opacity 0.3s ease;
}

.bar:hover .bar-value {
	opacity: 1;
}

/* Line Chart */
.line-chart {
	position: relative;
	width: 100%;
	height: 100%;
}

.line-chart-svg {
	width: 100%;
	height: 100%;
}

.chart-grid-line {
	stroke: rgba(255, 255, 255, 0.05);
	stroke-width: 1;
}

.chart-line {
	fill: none;
	stroke: #00ffcc;
	stroke-width: 2;
	filter: drop-shadow(0 0 10px rgba(0, 255, 204, 0.5));
}

.chart-area {
	fill: url(#gradient);
	opacity: 0.3;
}

.chart-dot {
	fill: #00ffcc;
	stroke: #0a0e27;
	stroke-width: 2;
	r: 4;
	cursor: pointer;
	transition: all 0.3s ease;
}

.chart-dot:hover {
	r: 6;
	filter: drop-shadow(0 0 15px rgba(0, 255, 204, 0.8));
}

/* Metrics Grid */
.metrics-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 20px;
	margin-bottom: 40px;
}

.metric-item {
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 15px;
	padding: 20px;
	text-align: center;
	transition: all 0.3s ease;
}

.metric-item:hover {
	transform: translateY(-3px);
	border-color: rgba(0, 255, 204, 0.3);
}

.metric-value {
	font-size: 24px;
	font-weight: 700;
	color: #00ffcc;
	margin-bottom: 5px;
}

.metric-label {
	font-size: 12px;
	color: #a0a0a0;
}

/* Reports Section */
.reports-section {
	padding: 80px 50px;
	background:
		linear-gradient(135deg, #1a0033 0%, #2d1b69 50%, #0f1329 100%),
		linear-gradient(90deg, transparent 49%, rgba(0, 255, 204, 0.05) 50%, transparent 51%),
		linear-gradient(0deg, transparent 49%, rgba(0, 255, 204, 0.05) 50%, transparent 51%);
	background-size: 100% 100%, 40px 40px, 40px 40px;
	position: relative;
}

.reports-section::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background:
		radial-gradient(circle at 20% 20%, rgba(255, 0, 128, 0.1) 0%, transparent 50%),
		radial-gradient(circle at 80% 80%, rgba(0, 204, 255, 0.1) 0%, transparent 50%);
	pointer-events: none;
}

/* Info Cards Section */
.info-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 30px;
	margin-bottom: 60px;
}

.info-card {
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 20px;
	padding: 25px;
	text-align: center;
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

.info-card:hover {
	transform: translateY(-5px);
	border-color: rgba(0, 255, 204, 0.3);
}

.info-icon {
	width: 60px;
	height: 60px;
	margin: 0 auto 20px;
	background: linear-gradient(135deg, #00ffcc 0%, #00ccff 100%);
	border-radius: 15px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 24px;
}

.info-title {
	font-size: 18px;
	font-weight: 600;
	margin-bottom: 10px;
}

.info-value {
	font-size: 28px;
	font-weight: 700;
	color: #00ffcc;
	margin-bottom: 10px;
}

/* Contact Section */
.contact-section {
    padding: 80px 50px;
    background: linear-gradient(180deg, #0f1329 0%, #0a0e27 100%);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: start;
}

/* Прибрано фон .contact-form — тепер він прозорий */
.contact-form-wrapper {
    background: transparent;
    border: none;
    padding: 0;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    color: #a0a0a0;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: #ffffff;
    font-size: 16px;
    transition: all 0.3s ease;
    font-family: inherit;
    box-sizing: border-box;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: rgba(0, 255, 204, 0.5);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 20px rgba(0, 255, 204, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-btn {
    background: linear-gradient(135deg, #d43f1f, #f5b042);
    color: #ffffff;
    border: none;
    padding: 15px 30px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(212, 63, 31, 0.4);
}

/* Responsive */
@media (max-width: 768px) {
    .contact-section {
        padding: 50px 20px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 12px 15px;
        font-size: 14px;
    }
    
    .submit-btn {
        padding: 12px 25px;
        font-size: 14px;
    }
}


.contact-info {
	padding: 20px 0;
}

.contact-info h3 {
	font-size: 24px;
	margin-bottom: 30px;
	background: linear-gradient(135deg, #ffffff 0%, #00ffcc 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.contact-item {
	display: flex;
	align-items: center;
	gap: 20px;
	margin-bottom: 30px;
	padding: 20px;
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 15px;
	transition: all 0.3s ease;
	cursor: pointer;
}

.contact-item:hover {
	transform: translateX(5px);
	border-color: rgba(0, 255, 204, 0.3);
	background: rgba(0, 255, 204, 0.05);
}

.contact-icon {
	width: 50px;
	height: 50px;
	background: linear-gradient(135deg, #00ffcc, #00ccff);
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 20px;
	flex-shrink: 0;
}

.contact-details h4 {
	font-size: 16px;
	margin-bottom: 5px;
	color: #ffffff;
}

.contact-details p {
	font-size: 14px;
	color: #a0a0a0;
	line-height: 1.4;
}
/* Important Disclaimer Section */
.disclaimer-section {
    background: linear-gradient(135deg, #8b0000 0%, #b22222 50%, #8b0000 100%);
    margin: 40px 20px;
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.disclaimer-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

.disclaimer-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 30px;
    text-align: center;
}

.disclaimer-title {
    color: #ffffff;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: 1px;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.disclaimer-text {
    color: #fff;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 15px;
    font-weight: 500;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.disclaimer-text strong {
    color: #ffcc00;
    font-weight: 700;
}

.disclaimer-icons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 25px;
}

.disclaimer-badge {
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(5px);
    padding: 8px 20px;
    border-radius: 50px;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.disclaimer-badge:hover {
    background: rgba(0, 0, 0, 0.6);
    transform: translateY(-2px);
    border-color: #ffcc00;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .disclaimer-section {
        margin: 30px 15px;
        border-radius: 20px;
    }
    
    .disclaimer-container {
        padding: 30px 20px;
    }
    
    .disclaimer-title {
        font-size: 22px;
    }
    
    .disclaimer-text {
        font-size: 14px;
    }
    
    .disclaimer-icons {
        gap: 12px;
    }
    
    .disclaimer-badge {
        padding: 6px 15px;
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .disclaimer-section {
        margin: 20px 10px;
        border-radius: 16px;
    }
    
    .disclaimer-container {
        padding: 25px 15px;
    }
    
    .disclaimer-title {
        font-size: 18px;
    }
    
    .disclaimer-text {
        font-size: 12px;
    }
    
    .disclaimer-icons {
        flex-direction: column;
        gap: 10px;
        align-items: center;
    }
    
    .disclaimer-badge {
        width: 80%;
    }
}
/* Footer Styles */
.site-footer {
    background: #0a0e27;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 60px 50px 30px;
    margin-top: 60px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-item {
    flex: 1;
    min-width: 220px;
}

.footer-item h3 {
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #d43f1f;
    display: inline-block;
}

.footer-item p {
    color: #a0a0a0;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 12px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links li a {
    color: #a0a0a0;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links li a:hover {
    color: #00ffcc;
    transform: translateX(5px);
}

/* Responsible Gaming Section */
.footer-responsible {
    text-align: center;
    padding: 30px 0 20px;
    margin-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.responsible-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.responsible-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #ffffff;
    padding: 12px 25px;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.responsible-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.responsible-img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.responsible-text {
    color: #333333;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
}
.footer-disclaimer {
    text-align: center;
    padding: 20px 0;
    max-width: 800px;
    margin: 0 auto;
}

.footer-disclaimer p {
    color: #707070;
    font-size: 12px;
    line-height: 1.6;
    margin: 0;
}

/* Footer Bottom */
.footer-bottom {
    text-align: center;
    padding-top: 30px;
    margin-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom p {
    color: #707070;
    font-size: 14px;
    margin: 0;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .site-footer {
        padding: 40px 20px 20px;
    }
    
    .footer-row {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }
    
    .footer-item h3 {
        display: block;
        text-align: center;
    }
    
    .footer-links li a:hover {
        transform: translateX(0);
    }
    
    .responsible-icons {
        gap: 20px;
    }
    
    .responsible-item {
        padding: 10px 20px;
    }
    
    .responsible-img {
        width: 32px;
        height: 32px;
    }
    
    .responsible-text {
        font-size: 12px;
    }
    
    .footer-disclaimer p {
        font-size: 11px;
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .site-footer {
        padding: 30px 15px 20px;
    }
    
    .footer-item {
        min-width: 100%;
    }
    
    .responsible-icons {
        flex-direction: column;
        gap: 15px;
    }
    
    .responsible-item {
        width: 80%;
        justify-content: center;
        padding: 10px 20px;
    }
    
    .responsible-img {
        width: 36px;
        height: 36px;
    }
}

/* Mobile Menu */
.hamburger {
	display: none;
	flex-direction: column;
	cursor: pointer;
	gap: 6px;
	z-index: 1001;
}

.hamburger span {
	width: 25px;
	height: 3px;
	background: #ffffff;
	border-radius: 2px;
	transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
	transform: rotate(45deg) translate(10px, 10px);
}

.hamburger.active span:nth-child(2) {
	opacity: 0;
}

.hamburger.active span:nth-child(3) {
	transform: rotate(-45deg) translate(8px, -8px);
}

.nav-links-mobile {
	display: none;
	position: fixed;
	top: 70px;
	left: 0;
	width: 100%;
	background: rgba(10, 14, 39, 0.98);
	backdrop-filter: blur(10px);
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	flex-direction: column;
	gap: 0;
	list-style: none;
	z-index: 1000;
	padding: 20px;
}

.nav-links-mobile.active {
	display: flex;
}

.nav-links-mobile a {
	color: #ffffff;
	text-decoration: none;
	padding: 15px 20px;
	display: block;
	border-left: 3px solid transparent;
	transition: all 0.3s ease;
}

.nav-links-mobile a:hover {
	border-left-color: #ff6b6b;
	background: rgba(255, 107, 107, 0.1);
	color: #ff8e53;
}

.nav-links-mobile a.active {
	border-left-color: #00ffcc;
	background: rgba(0, 255, 204, 0.1);
	color: #00ffcc;
}

@media (max-width: 1200px) {
	.charts-grid {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 968px) {
	.hero-content {
		grid-template-columns: 1fr;
		text-align: center;
	}

	.hero-text h1 {
		font-size: 48px;
	}

	.hero-text {
		padding-top: 160px;
	}
}

@media (max-width: 768px) {
	nav {
		padding: 15px 20px;
	}

	.hamburger {
		display: flex;
	}

	.nav-links {
		display: none;
	}

	.hero-text h1 {
		font-size: 36px;
	}

	.hero-text {
		padding-top: 120px;
	}

	.dashboard-section,
	.analytics-section,
	.reports-section,
	.contact-section {
		padding: 40px 20px;
	}

	.stats-grid {
		grid-template-columns: 1fr;
	}

	.contact-grid {
		grid-template-columns: 1fr;
		gap: 40px;
	}
}
/* Game Play Section */
.game-play-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #0a0e27 0%, #1a1f3a 100%);
    min-height: 100vh;
}

/* Disclaimer Top */
.game-disclaimer-top {
    background: rgba(212, 63, 31, 0.15);
    border-left: 4px solid #d43f1f;
    padding: 12px 20px;
    border-radius: 8px;
    margin-bottom: 25px;
    text-align: center;
}

.game-disclaimer-top p {
    color: #ffcc00;
    font-size: 14px;
    margin: 0;
}

.game-disclaimer-top strong {
    color: #fff;
}

/* Iframe Container */
.game-iframe-container {
    position: relative;
    width: 100%;
    background: #0a0e27;
    border-radius: 20px;
    overflow: hidden;
    border: 2px solid rgba(0, 255, 204, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.game-iframe-container iframe {
    width: 100%;
    height: 600px;
    display: block;
    border: none;
}

/* Disclaimer Bottom */
.game-disclaimer-bottom {
    background: rgba(0, 0, 0, 0.4);
    border-left: 4px solid #00ffcc;
    padding: 12px 20px;
    border-radius: 8px;
    margin-top: 25px;
    text-align: center;
}

.game-disclaimer-bottom p {
    color: #a0a0a0;
    font-size: 12px;
    margin: 0;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .game-play-section {
        padding: 30px 0;
    }
    
    .game-iframe-container iframe {
        height: 450px;
    }
    
    .game-disclaimer-top p,
    .game-disclaimer-bottom p {
        font-size: 11px;
    }
}

@media (max-width: 480px) {
    .game-iframe-container iframe {
        height: 350px;
    }
}

/* All Games Section */
.all-games-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #0a0e27 0%, #1a1f3a 100%);
    min-height: 100vh;
}

.all-games-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.all-games-title {
    text-align: center;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #ffffff 0%, #00ffcc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.all-games-subtitle {
    text-align: center;
    color: #a0a0a0;
    font-size: 16px;
    margin-bottom: 50px;
}

/* Grid: 3 columns on desktop */
.all-games-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Game Card */
.all-game-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
}

.all-game-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #00ffcc, transparent);
    animation: scan 3s linear infinite;
    pointer-events: none;
}

.all-game-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(0, 255, 204, 0.3);
}

@keyframes scan {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

/* Game Image */
.all-game-image-link {
    display: block;
    text-decoration: none;
    width: 100%;
}

.all-game-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
    background: #0a0e27;
}

.all-game-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
    display: block;
}

.all-game-card:hover .all-game-image img {
    transform: scale(1.05);
}

/* Game Info */
.all-game-info {
    padding: 20px;
    text-align: center;
}

.all-game-title {
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #ffffff 0%, #00ffcc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Play Button */
.all-game-btn {
    display: inline-block;
    background: linear-gradient(135deg, #d43f1f, #f5b042);
    color: #ffffff;
    text-decoration: none;
    padding: 10px 28px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.all-game-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(212, 63, 31, 0.4);
    color: #ffffff;
}

/* Tablet: 2 columns */
@media (max-width: 992px) {
    .all-games-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .all-games-title {
        font-size: 36px;
    }
    
    .all-game-image {
        height: 200px;
    }
}

/* Mobile: 1 column */
@media (max-width: 576px) {
    .all-games-section {
        padding: 40px 0;
    }
    
    .all-games-container {
        padding: 0 15px;
    }
    
    .all-games-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .all-games-title {
        font-size: 28px;
    }
    
    .all-games-subtitle {
        font-size: 14px;
        margin-bottom: 30px;
    }
    
    .all-game-image {
        height: 180px;
    }
    
    .all-game-info {
        padding: 15px;
    }
    
    .all-game-title {
        font-size: 16px;
        margin-bottom: 10px;
    }
    
    .all-game-btn {
        padding: 8px 20px;
        font-size: 13px;
    }
}

/* Small mobile */
@media (max-width: 380px) {
    .all-game-image {
        height: 160px;
    }
    
    .all-game-title {
        font-size: 14px;
    }
    
    .all-game-btn {
        padding: 7px 18px;
        font-size: 12px;
    }
}

/* Top Games Section */
.top-games-section {
    padding: 40px 0 80px;
    background: linear-gradient(135deg, #0a0e27 0%, #1a1f3a 100%);
    min-height: 100vh;
}

.top-games-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Banner */
.top-games-banner {
    background: linear-gradient(135deg, #1a1f3a 0%, #2a2f4a 100%);
    border-radius: 30px;
    padding: 40px 30px;
    text-align: center;
    margin-bottom: 50px;
    border: 1px solid rgba(0, 255, 204, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.banner-icon {
    font-size: 64px;
    margin-bottom: 15px;
}

.banner-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #ffffff 0%, #00ffcc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.banner-text {
    color: #a0a0a0;
    font-size: 16px;
    margin-bottom: 25px;
}

.banner-warning {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(212, 63, 31, 0.2);
    padding: 10px 25px;
    border-radius: 50px;
    border-left: 3px solid #d43f1f;
}

.warning-icon {
    font-size: 18px;
}

.warning-text {
    color: #ffcc00;
    font-size: 14px;
    font-weight: 500;
}

/* Top Games List */
.top-games-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Top Game Card */
.top-game-card {
    display: flex;
    align-items: center;
    gap: 25px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 15px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.top-game-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #00ffcc, transparent);
    animation: scan 3s linear infinite;
    pointer-events: none;
}

.top-game-card:hover {
    transform: translateX(8px);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(0, 255, 204, 0.3);
}

/* Rank colors */
.rank-1 .top-game-rank {
    background: linear-gradient(135deg, #ffd700, #ff8c00);
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
}

.rank-2 .top-game-rank {
    background: linear-gradient(135deg, #c0c0c0, #a0a0a0);
}

.rank-3 .top-game-rank {
    background: linear-gradient(135deg, #cd7f32, #b87333);
}

.top-game-rank {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 800;
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    flex-shrink: 0;
}

/* Game Image */
.top-game-image {
    width: 120px;
    height: 120px;
    flex-shrink: 0;
    border-radius: 16px;
    overflow: hidden;
    background: #0a0e27;
}

.top-game-image a {
    display: block;
    width: 100%;
    height: 100%;
}

.top-game-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.top-game-card:hover .top-game-image img {
    transform: scale(1.05);
}

/* Game Info */
.top-game-info {
    flex: 1;
}

.top-game-title {
    color: #ffffff;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
}

.top-game-stats {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.stat-badge {
    background: rgba(255, 255, 255, 0.1);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    color: #a0a0a0;
}

/* Play Button */
.top-game-btn {
    display: inline-block;
    background: linear-gradient(135deg, #d43f1f, #f5b042);
    color: #ffffff;
    text-decoration: none;
    padding: 8px 25px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.top-game-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(212, 63, 31, 0.4);
    color: #ffffff;
}

@keyframes scan {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

/* Tablet */
@media (max-width: 768px) {
    .top-games-container {
        padding: 0 15px;
    }
    
    .banner-title {
        font-size: 32px;
    }
    
    .banner-text {
        font-size: 14px;
    }
    
    .top-game-card {
        flex-wrap: wrap;
        gap: 15px;
        padding: 20px;
    }
    
    .top-game-rank {
        width: 55px;
        height: 55px;
        font-size: 22px;
    }
    
    .top-game-image {
        width: 90px;
        height: 90px;
    }
    
    .top-game-title {
        font-size: 18px;
    }
}

/* Mobile */
@media (max-width: 480px) {
    .top-games-section {
        padding: 20px 0 40px;
    }
    
    .top-games-banner {
        padding: 25px 20px;
        margin-bottom: 30px;
    }
    
    .banner-icon {
        font-size: 48px;
    }
    
    .banner-title {
        font-size: 24px;
    }
    
    .banner-text {
        font-size: 12px;
    }
    
    .warning-text {
        font-size: 10px;
    }
    
    .top-game-card {
        flex-direction: column;
        text-align: center;
    }
    
    .top-game-rank {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .top-game-image {
        width: 140px;
        height: 140px;
    }
    
    .top-game-stats {
        justify-content: center;
    }
    
    .top-game-title {
        font-size: 18px;
    }
}
/* Top Games This Month Section */
.top-month-section {
    padding: 40px 0 80px;
    background: linear-gradient(135deg, #0a0e27 0%, #1a1f3a 100%);
    min-height: 100vh;
}

.top-month-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Banner */
.top-month-banner {
    background: linear-gradient(135deg, #1a1f3a 0%, #2a2f4a 100%);
    border-radius: 30px;
    padding: 40px 30px;
    text-align: center;
    margin-bottom: 50px;
    border: 1px solid rgba(0, 255, 204, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.banner-icon {
    font-size: 64px;
    margin-bottom: 15px;
}

.banner-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #ffffff 0%, #00ffcc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.banner-text {
    color: #a0a0a0;
    font-size: 16px;
    margin-bottom: 25px;
}

.banner-warning {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(212, 63, 31, 0.2);
    padding: 10px 25px;
    border-radius: 50px;
    border-left: 3px solid #d43f1f;
}

.warning-icon {
    font-size: 18px;
}

.warning-text {
    color: #ffcc00;
    font-size: 14px;
    font-weight: 500;
}

/* Monthly Stats Row */
.monthly-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.monthly-stat-item {
    text-align: center;
    background: rgba(255, 255, 255, 0.05);
    padding: 20px 35px;
    border-radius: 20px;
    border: 1px solid rgba(0, 255, 204, 0.2);
    min-width: 180px;
}

.stat-number {
    display: block;
    font-size: 32px;
    font-weight: 700;
    background: linear-gradient(135deg, #00ffcc 0%, #00ccff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

.stat-label {
    color: #a0a0a0;
    font-size: 14px;
}

/* Top 5 Games Grid */
.top-month-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

/* Game Card */
.top-month-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 25px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.top-month-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, #00ffcc, transparent);
    animation: scan 3s linear infinite;
    pointer-events: none;
}

.top-month-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(0, 255, 204, 0.4);
}

/* Card variants */
.top-month-card.gold {
    border-top: 3px solid #ffd700;
}
.top-month-card.silver {
    border-top: 3px solid #c0c0c0;
}
.top-month-card.bronze {
    border-top: 3px solid #cd7f32;
}

.medal-icon {
    font-size: 40px;
    margin-bottom: 10px;
}

.month-rank {
    font-size: 14px;
    color: #a0a0a0;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

/* Game Image */
.month-image {
    width: 160px;
    height: 160px;
    margin: 0 auto 20px;
    border-radius: 20px;
    overflow: hidden;
    background: #0a0e27;
}

.month-image a {
    display: block;
    width: 100%;
    height: 100%;
}

.month-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.top-month-card:hover .month-image img {
    transform: scale(1.05);
}

/* Game Info */
.month-title {
    color: #ffffff;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
}

.month-metrics {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.metric {
    background: rgba(255, 255, 255, 0.1);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    color: #a0a0a0;
}

/* Progress Bar */
.month-progress {
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    margin-bottom: 20px;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #d43f1f, #f5b042);
    border-radius: 3px;
    transition: width 0.5s ease;
}

/* Play Button */
.month-btn {
    display: inline-block;
    background: linear-gradient(135deg, #d43f1f, #f5b042);
    color: #ffffff;
    text-decoration: none;
    padding: 10px 30px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.month-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(212, 63, 31, 0.4);
    color: #ffffff;
}

@keyframes scan {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

/* Tablet */
@media (max-width: 768px) {
    .top-month-container {
        padding: 0 15px;
    }
    
    .banner-title {
        font-size: 32px;
    }
    
    .monthly-stats {
        gap: 15px;
    }
    
    .monthly-stat-item {
        padding: 15px 25px;
        min-width: 140px;
    }
    
    .stat-number {
        font-size: 24px;
    }
    
    .stat-label {
        font-size: 12px;
    }
    
    .top-month-grid {
        grid-template-columns: 1fr;
    }
    
    .month-image {
        width: 140px;
        height: 140px;
    }
}

/* Mobile */
@media (max-width: 480px) {
    .top-month-section {
        padding: 20px 0 40px;
    }
    
    .top-month-banner {
        padding: 25px 20px;
        margin-bottom: 30px;
    }
    
    .banner-icon {
        font-size: 48px;
    }
    
    .banner-title {
        font-size: 24px;
    }
    
    .banner-text {
        font-size: 12px;
    }
    
    .warning-text {
        font-size: 10px;
    }
    
    .monthly-stats {
        flex-direction: column;
        align-items: center;
        gap: 12px;
        margin-bottom: 30px;
    }
    
    .monthly-stat-item {
        width: 100%;
        max-width: 250px;
    }
    
    .month-title {
        font-size: 18px;
    }
    
    .month-image {
        width: 130px;
        height: 130px;
    }
}

/* 18+ Modal Banner */
.age-modal {
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 9999;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
}

.age-modal-content {
    background: linear-gradient(135deg, #1a1f3a 0%, #0a0e27 100%);
    border: 2px solid rgba(0, 255, 204, 0.3);
    border-radius: 30px;
    padding: 50px 40px;
    text-align: center;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
    animation: modalFadeIn 0.5s ease;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.age-modal-icon {
    font-size: 80px;
    margin-bottom: 20px;
}

.age-modal-content h2 {
    color: #ffcc00;
    font-size: 28px;
    margin-bottom: 15px;
}

.age-modal-content p {
    color: #a0a0a0;
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 10px;
}

.age-warning {
    color: #ff6b6b !important;
    font-size: 14px !important;
    margin-top: 15px !important;
}

.age-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 30px;
}

.age-btn {
    padding: 12px 30px;
    border-radius: 40px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.age-btn.confirm {
    background: linear-gradient(135deg, #d43f1f, #f5b042);
    color: #fff;
}

.age-btn.confirm:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(212, 63, 31, 0.4);
}

.age-btn.decline {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.age-btn.decline:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: linear-gradient(135deg, #1a1f3a 0%, #0a0e27 100%);
    border: 1px solid rgba(0, 255, 204, 0.3);
    border-radius: 16px;
    padding: 16px 24px;
    z-index: 9998;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transform: translateY(100px);
    opacity: 0;
    transition: all 0.5s ease;
}

.cookie-banner.show {
    transform: translateY(0);
    opacity: 1;
}

.cookie-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.cookie-text {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
    color: #a0a0a0;
    font-size: 14px;
    line-height: 1.5;
}

.cookie-icon {
    flex-shrink: 0;
}

.cookie-text a {
    color: #00ffcc;
    text-decoration: none;
}

.cookie-text a:hover {
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.cookie-btn.accept {
    background: linear-gradient(135deg, #d43f1f, #f5b042);
    color: #fff;
}

.cookie-btn.accept:hover {
    transform: translateY(-1px);
    box-shadow: 0 3px 10px rgba(212, 63, 31, 0.4);
}

.cookie-btn.decline {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.cookie-btn.decline:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .age-modal-content {
        padding: 35px 25px;
        width: 85%;
    }
    
    .age-modal-content h2 {
        font-size: 24px;
    }
    
    .age-modal-content p {
        font-size: 14px;
    }
    
    .age-btn {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    .cookie-banner {
        left: 10px;
        right: 10px;
        bottom: 10px;
        padding: 12px 16px;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-text {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }
}