/* Common Game Detail Page Styles */

/* Hero Section Styles */
.game-detail-hero-section {
	background-size: cover;
	background-position: center;
	padding: 100px 0;
	position: relative;
}

.game-detail-hero-content {
	text-align: center;
	color: #fff;
}

.game-detail-hero-content h1 {
	font-size: 3rem;
	font-weight: 800;
	color: #ffd700;
	margin-bottom: 20px;
	text-transform: uppercase;
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.game-detail-hero-content p {
	font-size: 1.25rem;
	line-height: 1.8;
	color: #e0e0e0;
	max-width: 800px;
	margin: 0 auto 30px;
}

.game-detail-cta-btn {
	display: inline-block;
	background: linear-gradient(135deg, #ffd700, #ffed4e);
	color: #000;
	padding: 15px 40px;
	border-radius: 30px;
	text-decoration: none;
	font-weight: 700;
	font-size: 1.1rem;
	transition: all 0.3s ease;
	text-transform: uppercase;
	letter-spacing: 1px;
	box-shadow: 0 5px 20px rgba(255, 215, 0, 0.4);
}

.game-detail-cta-btn:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 30px rgba(255, 215, 0, 0.6);
}

/* Game/Tournament/Contest/League Card Styles */
.game-card,
.tournament-card,
.contest-card,
.league-card,
.match-card {
	background: rgba(0, 0, 0, 0.8);
	border-radius: 15px;
	overflow: hidden;
	transition: all 0.3s ease;
	border: 1px solid rgba(255, 255, 255, 0.1);
	height: 100%;
	margin-bottom: 30px;
}

.game-card:hover,
.tournament-card:hover,
.contest-card:hover,
.league-card:hover,
.match-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 15px 40px rgba(255, 215, 0, 0.3);
	border-color: rgba(255, 215, 0, 0.5);
}

.game-card-image,
.tournament-card-image,
.contest-card-image,
.league-card-image,
.match-card-image {
	position: relative;
	overflow: hidden;
	padding-top: 65%;
	background: #000;
}

.game-card-image img,
.tournament-card-image img,
.contest-card-image img,
.league-card-image img,
.match-card-image img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.4s ease;
}

.game-card:hover .game-card-image img,
.tournament-card:hover .tournament-card-image img,
.contest-card:hover .contest-card-image img,
.league-card:hover .league-card-image img,
.match-card:hover .match-card-image img {
	transform: scale(1.1);
}

.game-card-content,
.tournament-card-content,
.contest-card-content,
.league-card-content,
.match-card-content {
	padding: 30px;
}

.game-card-title,
.tournament-card-title,
.contest-card-title,
.league-card-title,
.match-card-title {
	font-size: 1.5rem;
	font-weight: 700;
	color: #fff;
	margin-bottom: 15px;
	text-transform: uppercase;
}

.game-card-desc,
.tournament-card-desc,
.contest-card-desc,
.league-card-desc,
.match-card-desc {
	font-size: 1rem;
	color: #b0b0b0;
	line-height: 1.8;
	margin-bottom: 20px;
}

.game-card-features,
.tournament-card-features,
.contest-card-features,
.league-card-features,
.match-card-features {
	list-style: none;
	padding: 0;
	margin: 20px 0;
}

.game-card-features li,
.tournament-card-features li,
.contest-card-features li,
.league-card-features li,
.match-card-features li {
	color: #e0e0e0;
	padding: 8px 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.game-card-features li i,
.tournament-card-features li i,
.contest-card-features li i,
.league-card-features li i,
.match-card-features li i {
	color: #ffd700;
	margin-right: 10px;
}

/* Button Styles */
.play-now-btn,
.bet-now-btn,
.join-now-btn {
	display: inline-block;
	background: linear-gradient(135deg, rgba(255, 215, 0, 0.15), rgba(255, 215, 0, 0.25));
	color: #ffd700;
	padding: 12px 30px;
	border-radius: 25px;
	text-decoration: none;
	font-weight: 600;
	font-size: 1rem;
	transition: all 0.3s ease;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	border: 1px solid rgba(255, 215, 0, 0.3);
	width: 100%;
	text-align: center;
}

.play-now-btn:hover,
.bet-now-btn:hover,
.join-now-btn:hover {
	background: linear-gradient(135deg, #ffd700, #ffed4e);
	color: #000;
	border-color: #ffd700;
	box-shadow: 0 5px 20px rgba(255, 215, 0, 0.4);
}

/* Information Section Styles */
.info-section {
	background: linear-gradient(135deg, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6));
	padding: 60px 40px;
	border-radius: 15px;
	margin: 60px 0;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.info-section h3 {
	color: #ffd700;
	font-size: 2rem;
	margin-bottom: 25px;
	font-weight: 700;
	text-transform: uppercase;
}

.info-section h4 {
	color: #fff;
	font-size: 1.5rem;
	margin-top: 30px;
	margin-bottom: 15px;
	font-weight: 600;
}

.info-section p {
	color: #e0e0e0;
	line-height: 1.9;
	font-size: 1.05rem;
	margin-bottom: 15px;
}

.info-section ul {
	list-style: none;
	padding-left: 0;
}

.info-section ul li {
	color: #e0e0e0;
	padding: 10px 0;
	font-size: 1.05rem;
	position: relative;
	padding-left: 30px;
}

.info-section ul li:before {
	content: "✓";
	color: #ffd700;
	font-weight: bold;
	position: absolute;
	left: 0;
	font-size: 1.3rem;
}

/* WhatsApp Float Button */
.float {
	position: fixed;
	width: 60px;
	height: 60px;
	bottom: 40px;
	left: 40px;
	background-color: #25d366;
	color: #FFF;
	border-radius: 50px;
	text-align: center;
	font-size: 30px;
	box-shadow: 2px 2px 3px #999;
	z-index: 100;
}

.my-float {
	margin-top: 16px;
}

/* Feature Icon Box Styles */
.feature-icon-box {
	background: rgba(255, 215, 0, 0.1);
	border: 2px solid rgba(255, 215, 0, 0.3);
	border-radius: 15px;
	padding: 30px;
	text-align: center;
	transition: all 0.3s ease;
	margin-bottom: 30px;
}

.feature-icon-box:hover {
	background: rgba(255, 215, 0, 0.15);
	border-color: #ffd700;
	transform: translateY(-5px);
}

.feature-icon-box i {
	font-size: 50px;
	color: #ffd700;
	margin-bottom: 20px;
}

.feature-icon-box h5 {
	color: #fff;
	font-size: 1.3rem;
	font-weight: 700;
	margin-bottom: 15px;
}

.feature-icon-box p {
	color: #b0b0b0;
	font-size: 1rem;
	line-height: 1.6;
	margin: 0;
}

/* Responsive Styles */
@media (max-width: 768px) {
	.game-detail-hero-content h1 {
		font-size: 2rem;
	}
	
	.game-detail-hero-content p {
		font-size: 1rem;
	}
	
	.info-section {
		padding: 40px 20px;
	}
	
	.info-section h3 {
		font-size: 1.5rem;
	}
	
	.info-section h4 {
		font-size: 1.2rem;
	}
}
