/* Base Styles */
:root {
--primary-color: #00B8D9; /* Ocean Blue */
--secondary-color: #172B4D; /* Deep Navy */
--accent-color: #E3FDFD; /* Soft Aqua */
--dark-primary: #008DA1;
--light-primary: #33CFFF;
--text-color: #172B4D;
--light-text: #FFFFFF;
--dark-text: #0F1C2E;
--border-radius: 8px;
--box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
--gradient-primary: linear-gradient(135deg, var(--primary-color), var(--dark-primary));
--gradient-dark: linear-gradient(135deg, var(--secondary-color), #0F1C2E);
--transition: all 0.3s ease;

}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Russo One', sans-serif;
    color: var(--text-color);
    background-color: #f5f5f5;
    line-height: 1.6;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Russo One', sans-serif;
    line-height: 1.2;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

p {
    margin-bottom: 15px;
    font-family: 'Russo One', sans-serif;
    font-weight: 300;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    position: relative;
    color: var(--secondary-color);
}

.divider {
    width: 80px;
    height: 4px;
    background: var(--primary-color);
    margin: 0 auto 20px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: var(--border-radius);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    cursor: pointer;
    font-size: 0.9rem;
    border: none;
    font-family: 'Russo One', sans-serif;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--light-text);
    box-shadow: 0 4px 15px rgba(255, 94, 58, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 94, 58, 0.4);
}

.btn-secondary {
    background: var(--accent-color);
    color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
}

.btn-secondary:hover {
    background: var(--secondary-color);
    color: var(--accent-color);
    transform: translateY(-3px);
}

.btn-play {
    background: var(--primary-color);
    color: var(--light-text);
    padding: 10px 20px;
    border-radius: var(--border-radius);
    font-size: 0.8rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.btn-play:hover {
    background: var(--dark-primary);
    transform: scale(1.05);
}

/* Header */
#header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
    background-color: rgba(51, 51, 51, 0.8);
    backdrop-filter: blur(10px);
}

#header.scrolled {
    padding: 15px 0;
    background-color: var(--secondary-color);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

.logo h1 {
    color: var(--light-text);
    font-size: 1.8rem;
    margin: 0;
    letter-spacing: 1px;
}

.logo h1:hover {
    color: var(--primary-color);
}

.nav-menu {
    display: flex;
}

.nav-menu li {
    margin-left: 30px;
}

.nav-menu a {
    color: var(--light-text);
    font-weight: 500;
    position: relative;
    padding: 5px 0;
    font-size: 1rem;
}

.nav-menu a:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
}

.nav-menu a:hover:after,
.nav-menu a.active:after {
    width: 100%;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-color);
}

.mobile-menu-btn {
    display: none;
    color: var(--light-text);
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
#hero {
    position: relative;
    height: 100vh;
    background: url('/images/hero-img.webp') no-repeat center center/cover;
    display: flex;
    align-items: center;
    padding-top: 80px;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero-content h1 {
    color: var(--light-text);
    font-size: 3.5rem;
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-content h1 span {
    color: var(--primary-color);
    display: block;
}

.hero-content p {
    color: var(--accent-color);
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* About Section */
#about {
    padding: 100px 0;
    background: var(--accent-color);
}

.about-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.about-image {
    flex: 1;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    position: relative;
}

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

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

.about-text {
    flex: 1;
}

.about-text h3 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.about-features {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 30px;
}

.about-features .feature {
    text-align: center;
    flex: 1;
    min-width: 150px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: var(--border-radius);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.about-features .feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.about-features .feature i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.about-features .feature h4 {
    font-size: 1rem;
    margin-bottom: 5px;
}

/* Games Section */
#games {
    padding: 100px 0;
    background-color: #f7f7f7;
}

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

.game-card {
    background: #fff;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.game-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.game-thumbnail {
    position: relative;
    height: 0;
    padding-bottom: 100%; /* 1:1 Aspect Ratio */
    overflow: hidden;
}

.game-thumbnail img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.game-card:hover .game-thumbnail 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;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: var(--transition);
}

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

.game-info {
    padding: 20px;
    text-align: center;
}

.game-info h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: var(--secondary-color);
}

.game-info p {
    font-size: 0.9rem;
    color: #666;
}

.games-action {
    text-align: center;
    margin-top: 20px;
}

/* Features Section */
#features {
    padding: 100px 0;
    background: var(--gradient-dark);
    color: var(--light-text);
}

#features .section-header h2 {
    color: var(--light-text);
}

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

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius);
    padding: 30px;
    text-align: center;
    transition: var(--transition);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.feature-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.1);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 20px;
    box-shadow: 0 5px 15px rgba(255, 94, 58, 0.3);
}

.feature-icon i {
    font-size: 1.8rem;
    color: var(--light-text);
}

.feature-card h3 {
    color: var(--light-text);
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.feature-card p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

/* Community Section */
#community {
    padding: 100px 0;
    background-color: var(--accent-color);
}

.community-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.community-text {
    flex: 1;
}

.community-text h3 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.community-stats {
    display: flex;
    gap: 30px;
    margin: 30px 0;
}

.stat {
    text-align: center;
    flex: 1;
}

.stat h4 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.stat p {
    font-size: 0.9rem;
    color: var(--secondary-color);
    font-weight: 700;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--secondary-color);
    color: var(--light-text);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: var(--transition);
}

.social-icon:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.community-image {
    flex: 1;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.community-image img {
    width: 100%;
    transition: transform 0.5s ease;
}

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

/* Disclaimer Section */
#disclaimer {
    padding: 80px 0;
    background-color: #f7f7f7;
}

.disclaimer-content {
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: var(--border-radius);
    padding: 40px;
    box-shadow: var(--box-shadow);
}

.disclaimer-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-right: 30px;
}

.disclaimer-text p {
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.disclaimer-buttons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

/* Footer */
footer {
    background: var(--secondary-color);
    color: var(--light-text);
    padding: 70px 0 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
}

.footer-logo h2 {
    color: var(--light-text);
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.footer-logo p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

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

.footer-column h3 {
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-bottom: 20px;
    position: relative;
}

.footer-column h3:after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--primary-color);
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-column ul li a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-column .social-links {
    margin-top: 10px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin: 0;
}

.footer-legal p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.8rem;
    margin: 0;
}

/* Page Banner */
#page-banner {
    position: relative;
    background: url('https://images.pexels.com/photos/1871508/pexels-photo-1871508.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=1') no-repeat center center/cover;
    height: 300px;
    display: flex;
    align-items: center;
    text-align: center;
    padding-top: 80px;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1;
}

#page-banner .container {
    position: relative;
    z-index: 2;
}

#page-banner h1 {
    color: var(--light-text);
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.breadcrumb {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.breadcrumb a {
    color: var(--primary-color);
}

.breadcrumb a:hover {
    text-decoration: underline;
}

/* Contact Page */
#contact {
    padding: 100px 0;
    background-color: #f7f7f7;
}

.contact-content {
    display: flex;
    gap: 50px;
}

.contact-info {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.info-item {
    background: #fff;
    border-radius: var(--border-radius);
    padding: 30px;
    display: flex;
    align-items: flex-start;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.info-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.info-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 15px;
    color: var(--light-text);
    font-size: 1.2rem;
}

.info-text h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.info-text p {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 5px;
}

.contact-form {
    flex: 1;
    background: #fff;
    border-radius: var(--border-radius);
    padding: 40px;
    box-shadow: var(--box-shadow);
}

.contact-form h3 {
    font-size: 1.5rem;
    margin-bottom: 30px;
    color: var(--secondary-color);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.9rem;
    margin-bottom: 8px;
    color: var(--secondary-color);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: var(--border-radius);
    font-family: 'Russo One', sans-serif;
    font-size: 0.9rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--primary-color);
    outline: none;
}

/* Social Connect Section */
#social-connect {
    padding: 80px 0;
    background-color: var(--accent-color);
}

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

.social-card {
    background: #fff;
    border-radius: var(--border-radius);
    padding: 30px;
    text-align: center;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.social-card:hover {
    transform: translateY(-10px);
}

.social-card i {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.social-card h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.social-card p {
    font-size: 0.9rem;
    color: #666;
}

.social-card.facebook {
    border-top: 5px solid #3b5998;
}

.social-card.facebook i {
    color: #3b5998;
}

.social-card.twitter {
    border-top: 5px solid #1da1f2;
}

.social-card.twitter i {
    color: #1da1f2;
}

.social-card.instagram {
    border-top: 5px solid #e1306c;
}

.social-card.instagram i {
    color: #e1306c;
}

.social-card.discord {
    border-top: 5px solid #7289da;
}

.social-card.discord i {
    color: #7289da;
}

/* Privacy Policy & Terms Pages */
#privacy-policy,
#terms {
    padding: 100px 0;
    background-color: #f7f7f7;
}

.policy-content,
.terms-content {
    background: #fff;
    border-radius: var(--border-radius);
    padding: 50px;
    box-shadow: var(--box-shadow);
}

.last-updated {
    text-align: right;
    margin-bottom: 30px;
    color: #666;
    font-size: 0.9rem;
}

.policy-section,
.terms-section {
    margin-bottom: 40px;
}

.policy-section h2,
.terms-section h2 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 20px;
    border-bottom: 2px solid #eee;
    padding-bottom: 10px;
}

.policy-section h3,
.terms-section h3 {
    font-size: 1.2rem;
    color: var(--secondary-color);
    margin: 25px 0 15px;
}

.policy-section p,
.terms-section p {
    margin-bottom: 15px;
    font-size: 0.95rem;
    line-height: 1.7;
}

.policy-section ul,
.terms-section ul {
    margin-bottom: 15px;
    padding-left: 20px;
}

.policy-section ul li,
.terms-section ul li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 15px;
    font-size: 0.95rem;
    line-height: 1.7;
}

.policy-section ul li:before,
.terms-section ul li:before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--primary-color);
}