/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #888888;
    --secondary-color: #666666;
    --bg-dark: #0a0a0a;
    --bg-light: #1a1a1a;
    --text-primary: #ffffff;
    --text-secondary: #b0b0b0;
    --accent: #aaaaaa;
    --gradient: linear-gradient(135deg, #888888 0%, #aaaaaa 100%);
}

body {
    font-family: 'Poppins', sans-serif;
    background: var(--bg-dark);
    color: var(--text-primary);
    overflow-x: hidden;
    line-height: 1.6;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.navbar-logo-img {
    height: 110px;
    width: auto;
}

.logo-text-container {
    display: flex;
    flex-direction: column;
}

.logo-text {
    font-size: 1.8rem;
    font-weight: 800;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 2px;
    line-height: 1;
}

.logo-subtitle {
    font-size: 0.7rem;
    color: var(--text-secondary);
    letter-spacing: 4px;
    margin-top: -5px;
    line-height: 1;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
}

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

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

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

.nav-players {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}

.players-count {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.players-label {
    font-size: 0.7rem;
    color: var(--text-secondary);
    letter-spacing: 2px;
}

.nav-actions {
    display: flex;
    gap: 1rem;
}

.btn-register,
.btn-login {
    padding: 0.6rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-register {
    background: var(--gradient);
    color: var(--bg-dark);
}

.btn-register:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(136, 136, 136, 0.3);
}

.btn-login {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--primary-color);
}

.btn-login:hover {
    background: var(--primary-color);
    color: var(--bg-dark);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    transition: all 0.3s;
}

/* Hero Section */
.hero {
    margin-top: 80px;
    min-height: calc(100vh - 80px);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.hero-slider {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(136, 136, 136, 0.1) 0%, rgba(170, 170, 170, 0.1) 100%);
    position: relative;
}

.hero-slider::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
    opacity: 0.5;
}

.slide-content {
    text-align: center;
    z-index: 1;
    position: relative;
    padding: 2rem 2rem 4rem;
}

.hero-title {
    font-size: 5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 3px;
    animation: fadeInUp 1s ease;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease 0.2s backwards;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto 2rem;
    animation: fadeInUp 1s ease 0.4s backwards;
}

.hero-logo {
    max-width: 300px;
    height: auto;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease backwards;
    filter: drop-shadow(0 10px 30px rgba(136, 136, 136, 0.3));
}

.btn-play {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: var(--gradient);
    color: var(--bg-dark);
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    border-radius: 12px;
    transition: all 0.3s;
    animation: fadeInUp 1s ease 0.6s backwards;
    box-shadow: 0 10px 40px rgba(136, 136, 136, 0.3);
    margin-bottom: 4rem;
}

.btn-play:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(136, 136, 136, 0.5);
}

.hero-info {
    display: flex;
    justify-content: center;
    gap: 2rem;
    padding: 3rem 2rem;
    background: var(--bg-light);
    position: relative;
    z-index: 2;
}

.info-card {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s;
}

.info-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(136, 136, 136, 0.2);
}

.info-card h3 {
    font-size: 1rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    letter-spacing: 2px;
}

.info-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* Sections */
section {
    padding: 5rem 2rem;
}

.section-title {
    text-align: center;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 3rem;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* How to Play Section */
.how-to-play {
    background: var(--bg-light);
}

.steps-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.step-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    transition: all 0.3s;
}

.step-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 15px 40px rgba(136, 136, 136, 0.2);
}

.step-number {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    color: var(--bg-dark);
}

.step-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.step-card p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.btn-download,
.btn-connect,
.btn-forum {
    padding: 0.8rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-block;
}

.btn-download {
    background: var(--gradient);
    color: var(--bg-dark);
}

.btn-connect {
    background: var(--primary-color);
    color: var(--bg-dark);
}

.btn-forum {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-download:hover,
.btn-connect:hover,
.btn-forum:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(136, 136, 136, 0.3);
}

/* Features Section */
.features {
    background: var(--bg-dark);
}

.features-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    transition: all 0.3s;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent);
    box-shadow: 0 15px 40px rgba(170, 170, 170, 0.2);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.feature-card p {
    color: var(--text-secondary);
}

/* Server Info Section */
.server-info {
    background: var(--bg-light);
    display: flex;
    justify-content: center;
}

.server-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    max-width: 600px;
    width: 100%;
}

.server-card h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.server-details {
    margin-bottom: 2rem;
}

.detail-item {
    display: flex;
    justify-content: space-between;
    padding: 1rem;
    margin-bottom: 0.5rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
}

.detail-label {
    color: var(--text-secondary);
}

.detail-value {
    color: var(--primary-color);
    font-weight: 600;
}

.btn-play-large {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: var(--gradient);
    color: var(--bg-dark);
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    border-radius: 12px;
    transition: all 0.3s;
    box-shadow: 0 10px 40px rgba(136, 136, 136, 0.3);
}

.btn-play-large:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(136, 136, 136, 0.5);
}

/* Gallery Section */
.gallery-section {
    background: var(--bg-light);
    padding: 5rem 2rem;
}

.gallery-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
}

.gallery-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s;
    cursor: pointer;
    aspect-ratio: 16/9;
}

.gallery-item:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 15px 40px rgba(136, 136, 136, 0.3);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    padding: 2rem;
    transform: translateY(100%);
    transition: transform 0.3s;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay p {
    color: var(--text-primary);
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
}

/* Discord Section */
.discord-section {
    background: var(--bg-dark);
    text-align: center;
}

.discord-content {
    max-width: 800px;
    margin: 0 auto;
}

.discord-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.discord-content p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.btn-discord {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--gradient);
    color: var(--bg-dark);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 12px;
    transition: all 0.3s;
}

.btn-discord:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(136, 136, 136, 0.4);
}

/* Footer */
.footer {
    background: var(--bg-light);
    padding: 3rem 2rem 1rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.footer-bottom p {
    margin-bottom: 0.5rem;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: var(--bg-light);
    z-index: 2000;
    transition: right 0.3s;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-logo {
    font-weight: 700;
    font-size: 1.2rem;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.mobile-close {
    font-size: 2rem;
    cursor: pointer;
    color: var(--text-primary);
}

.mobile-menu-list {
    list-style: none;
    padding: 2rem;
}

.mobile-menu-list li {
    margin-bottom: 1rem;
}

.mobile-menu-list a {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 1.1rem;
    display: block;
    padding: 0.8rem;
    border-radius: 8px;
    transition: all 0.3s;
}

.mobile-menu-list a:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--primary-color);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 1024px) {
    .nav-menu {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hero-title {
        font-size: 3.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    .nav-players,
    .nav-actions {
        display: none;
    }
    
    .nav-container {
        padding: 0 1rem;
    }
    
    .navbar-logo-img {
        height: 60px;
        width: auto;
    }
    
    .logo-text-container {
        display: none;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-description {
        font-size: 0.9rem;
    }
    
    .hero-info {
        flex-direction: column;
        gap: 1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .steps-container,
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-logo {
        max-width: 200px;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 0 0.8rem;
    }
    
    .navbar-logo-img {
        height: 70px;
        width: auto;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
    }
    
    .hero-description {
        font-size: 0.85rem;
    }
    
    .btn-play,
    .btn-play-large {
        padding: 0.9rem 1.8rem;
        font-size: 0.9rem;
        margin-bottom: 2rem;
    }
    
    section {
        padding: 3rem 1rem;
    }
    
    .hero-logo {
        max-width: 150px;
    }
    
    .gallery-grid {
        gap: 1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .info-card h3 {
        font-size: 0.9rem;
    }
    
    .info-card p {
        font-size: 0.8rem;
    }
    
    .hero-info {
        gap: 0.8rem;
        padding: 2rem 1rem;
    }
}

/* Page Content Styles */
.page-content {
    margin-top: 80px;
    padding: 5rem 2rem;
    background: var(--bg-dark);
    min-height: calc(100vh - 80px);
}

.page-container {
    max-width: 900px;
    margin: 0 auto;
}

.page-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 3rem;
    text-align: center;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.content-block {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 2rem;
}

.content-block h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.content-block h3 {
    font-size: 1.4rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    color: var(--primary-color);
}

.content-block p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.feature-list,
.contact-list {
    list-style: none;
    padding-left: 0;
}

.feature-list li,
.contact-list li {
    color: var(--text-secondary);
    padding: 0.8rem 0;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.feature-list li::before,
.contact-list li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.text-center {
    text-align: center;
}

.btn-back {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--gradient);
    color: var(--bg-dark);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 12px;
    transition: all 0.3s;
    margin-top: 2rem;
}

.btn-back:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(136, 136, 136, 0.3);
}

.btn-discord-inline {
    display: inline-block;
    padding: 0.8rem 2rem;
    background: var(--gradient);
    color: var(--bg-dark);
    text-decoration: none;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s;
    margin-top: 1rem;
}

.btn-discord-inline:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(136, 136, 136, 0.3);
}

/* FAQ Styles */
.faq-container {
    margin-bottom: 3rem;
}

.faq-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 1.5rem;
    transition: all 0.3s;
}

.faq-item:hover {
    border-color: var(--primary-color);
    background: rgba(255, 255, 255, 0.08);
}

.faq-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: var(--primary-color);
}

.faq-item p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin: 0;
}

.faq-item a {
    color: var(--primary-color);
    text-decoration: none;
}

.faq-item a:hover {
    text-decoration: underline;
}

/* Responsive adjustments for page content */
@media (max-width: 768px) {
    .page-title {
        font-size: 2rem;
    }
    
    .content-block {
        padding: 1.5rem;
    }
    
    .content-block h2 {
        font-size: 1.5rem;
    }
    
    .content-block h3 {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .page-content {
        padding: 3rem 1rem;
    }
    
    .page-title {
        font-size: 1.8rem;
    }
    
    .content-block {
        padding: 1rem;
    }
}

