body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    background: radial-gradient(circle at top, #0f2f2f, #020404);
    color: #e8fdfd;
}

.hero {
    padding: 120px 20px;
    text-align: center;
    background: linear-gradient(135deg, #0f3d3e, #021212);
}

.hero h1 {
    font-size: 3rem;
    font-weight: 600;
}

.section {
    padding: 80px 20px;
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
}

.custom-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    overflow: hidden;
    backdrop-filter: blur(10px);
    transition: 0.3s;
}

.custom-card img {
    width: 100%;
}

.custom-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 0 20px rgba(0, 255, 200, 0.2);
}

.btn-main {
    background: linear-gradient(135deg, #00ffcc, #009966);
    border: none;
    color: black;
    padding: 10px 20px;
    border-radius: 25px;
}

.btn-main:hover {
    opacity: 0.8;
}

.newsletter {
    text-align: center;
    padding: 60px;
    background: linear-gradient(135deg, #003d33, #001a16);
}

.newsletter input {
    padding: 10px;
    width: 250px;
    margin: 10px;
    border-radius: 20px;
    border: none;
}

.faq-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 15px;
    margin: 10px 0;
    border-radius: 10px;
    cursor: pointer;
}

.faq-content {
    display: none;
    padding-top: 10px;
}

footer {
    background: #010a0a;
    padding: 20px;
}

.custom-navbar {
    background: rgba(0, 20, 20, 0.6);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    transition: 0.3s;
}

.navbar-brand {
    font-weight: bold;
    color: #00ffcc !important;
}

.nav-link {
    color: #cfffff !important;
    margin-left: 15px;
}

.nav-link:hover {
    color: #00ffcc !important;
}

.hero {
    position: relative;
    height: 100vh;
    background: url('../img/bg.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

.overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.4), rgba(0, 20, 20, 0.4));
}

.hero-content {
    position: relative;
    text-align: center;
    color: white;
}

.hero h1 {
    font-size: 3.5rem;
    text-shadow: 0 0 20px rgba(0, 255, 200, 0.5);
}

body {
    padding-top: 80px;
}

.about-text {
    color: #cfeeee;
    line-height: 1.7;
    margin-bottom: 15px;
}

.about-list {
    list-style: none;
    padding: 0;
}

.about-list li {
    margin: 10px 0;
    color: #9fffe0;
}

.about-img {
    border-radius: 20px;
    box-shadow: 0 0 30px rgba(0, 255, 200, 0.2);
    transition: 0.3s;
}

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

.service-card {
    background: rgba(255, 255, 255, 0.04);
    padding: 30px 15px;
    border-radius: 15px;
    transition: 0.3s;
    backdrop-filter: blur(8px);
    cursor: pointer;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 25px rgba(0, 255, 200, 0.3);
}

.icon {
    font-size: 40px;
    margin-bottom: 15px;
    transition: 0.3s;
}

.service-card:hover .icon {
    transform: scale(1.2);
}

.service-card h6 {
    color: #dfffff;
}

.why-text {
    color: #cfeeee;
    margin-bottom: 20px;
    line-height: 1.7;
}

.why-img {
    border-radius: 20px;
    box-shadow: 0 0 30px rgba(0, 255, 200, 0.2);
    transition: 0.3s;
}

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

.why-box {
    background: rgba(255, 255, 255, 0.04);
    padding: 15px;
    margin-bottom: 15px;
    border-radius: 12px;
    transition: 0.3s;
}

.why-box:hover {
    box-shadow: 0 0 20px rgba(0, 255, 200, 0.25);
    transform: translateX(5px);
}

.why-box h6 {
    color: #9fffe0;
    margin-bottom: 5px;
}

.why-box p {
    color: #cfeeee;
    font-size: 14px;
}

.review-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 15px;
    transition: 0.3s;
    backdrop-filter: blur(8px);
}

.review-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 0 25px rgba(0, 255, 200, 0.3);
}

.review-card p {
    font-size: 14px;
    color: #cfeeee;
    margin-bottom: 10px;
}

.review-card h6 {
    color: #9fffe0;
}

.stars {
    color: #00ffcc;
    margin-bottom: 10px;
    letter-spacing: 2px;
}

.carousel-control-prev,
.carousel-control-next {
    width: 40px;
    height: 40px;
    background: rgba(0, 255, 200, 0.2);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
}

.footer {
    background: linear-gradient(135deg, #001a16, #000);
    color: #cfeeee;
    padding: 50px 20px 20px;
}

.footer-title {
    color: #00ffcc;
    margin-bottom: 15px;
}

.footer-list {
    list-style: none;
    padding: 0;
}

.footer-list li {
    margin-bottom: 8px;
}

.footer-list a {
    color: #cfeeee;
    text-decoration: none;
    transition: 0.3s;
}

.footer-list a:hover {
    color: #00ffcc;
    padding-left: 5px;
}

.footer-bottom {
    margin-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 15px;
    font-size: 14px;
}

.contact-card {
    background: rgba(255, 255, 255, 0.04);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    box-shadow: 0 0 40px rgba(0, 255, 200, 0.08);
}

.contact-card label {
    display: block;
    color: #9fffe0;
    margin-bottom: 5px;
}

.contact-card input,
.contact-card textarea {
    width: 100%;
    padding: 12px;
    border-radius: 10px;
    border: none;
    outline: none;
    background: rgba(255, 255, 255, 0.05);
    color: #eaffff;
    transition: 0.3s;
}

.contact-card input::placeholder,
.contact-card textarea::placeholder {
    color: rgba(200, 255, 255, 0.5);
}

.contact-card input:hover,
.contact-card textarea:hover {
    box-shadow: 0 0 10px rgba(0, 255, 200, 0.2);
}

.contact-card input:focus,
.contact-card textarea:focus {
    box-shadow: 0 0 15px rgba(0, 255, 200, 0.5);
    transform: scale(1.02);
}

textarea {
    resize: none;
}

.stats-section {
    background: linear-gradient(135deg, #001a16, #000);
    padding: 80px 20px;
}

.stat-box {
    background: rgba(255, 255, 255, 0.04);
    padding: 30px;
    border-radius: 15px;
    transition: 0.3s;
}

.stat-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 25px rgba(0, 255, 200, 0.3);
}

.stat-box h2 {
    font-size: 40px;
    color: #00ffcc;
    text-shadow: 0 0 10px rgba(0, 255, 200, 0.5);
}

.stat-box p {
    color: #cfeeee;
}

.game-card {
    background: rgba(255, 255, 255, 0.04);
    border-radius: 15px;
    overflow: hidden;
    transition: 0.3s;
    backdrop-filter: blur(8px);
}

.game-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 25px rgba(0, 255, 200, 0.3);
}

.game-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
}

.game-content {
    padding: 20px;
}

.game-content h4 {
    color: #9fffe0;
}

.game-content p {
    color: #cfeeee;
    font-size: 14px;
}

.why-news-card {
    background: rgba(255, 255, 255, 0.04);
    padding: 30px 20px;
    border-radius: 15px;
    transition: 0.3s;
    backdrop-filter: blur(8px);
}

.why-news-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 25px rgba(0, 255, 200, 0.3);
}

.why-icon {
    font-size: 40px;
    margin-bottom: 15px;
}

.why-news-card h5 {
    color: #9fffe0;
    margin-bottom: 10px;
}

.why-news-card p {
    color: #cfeeee;
    font-size: 14px;
    line-height: 1.6;
}

.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 600px;
    background: rgba(0, 20, 20, 0.95);
    color: #cfeeee;
    padding: 20px;
    border-radius: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    box-shadow: 0 0 25px rgba(0, 255, 200, 0.3);
    backdrop-filter: blur(10px);
    z-index: 9999;
}

.cookie-banner p {
    margin: 0;
    font-size: 14px;
}

.cookie-banner a {
    color: #00ffcc;
    text-decoration: underline;
}

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

.cookie-hidden {
    display: none;
}

.guide-text {
    color: #cfeeee;
    line-height: 1.7;
    margin-bottom: 15px;
}

.guide-list {
    list-style: none;
    padding: 0;
}

.guide-list li {
    margin: 10px 0;
    color: #9fffe0;
}

.guide-img {
    border-radius: 20px;
    box-shadow: 0 0 30px rgba(0, 255, 200, 0.2);
    transition: 0.3s;
}

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

.guide-card-text {
    background: rgba(255, 255, 255, 0.04);
    padding: 25px;
    border-radius: 15px;
    transition: 0.3s;
    backdrop-filter: blur(8px);
}

.guide-card-text:hover {
    transform: translateY(-8px);
    box-shadow: 0 0 25px rgba(0, 255, 200, 0.25);
}

.guide-card-text h4 {
    color: #9fffe0;
    margin-bottom: 10px;
}

.guide-card-text p {
    color: #cfeeee;
    font-size: 14px;
    line-height: 1.7;
}