/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #ff9933;
    --secondary-color: #ff6600;
    --dark-bg: #0a0a0a;
    --darker-bg: #000000;
    --light-text: #ffffff;
    --gray-text: #b8b8b8;
    --accent-color: #ff9933;
    --success-color: #00ff88;
    --gradient-1: linear-gradient(135deg, #ff9933 0%, #ff6600 100%);
    --gradient-2: linear-gradient(135deg, #ffaa55 0%, #ff6600 100%);
    --gradient-3: linear-gradient(135deg, #ffffff 0%, #ff9933 100%);
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #000000 0%, #1a0f00 25%, #2d1a00 50%, #1a0f00 75%, #000000 100%);
    background-attachment: fixed;
    color: var(--light-text);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 14, 39, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 15px;
}

.nav-logo {
    height: 50px;
    width: auto;
}

.brand-name {
    font-size: 1.8rem;
    font-weight: bold;
    background: var(--gradient-3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: var(--light-text);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: width 0.3s;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link:hover {
    color: var(--accent-color);
}

.admin-link {
    background: var(--gradient-1);
    padding: 8px 20px;
    border-radius: 25px;
}

.admin-link::after {
    display: none;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--light-text);
    transition: all 0.3s;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: linear-gradient(135deg, #000000 0%, #1a0f00 50%, #000000 100%);
    overflow: hidden;
}

.hero::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="50" height="50" patternUnits="userSpaceOnUse"><path d="M 50 0 L 0 0 0 50" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(102, 126, 234, 0.1) 0%, transparent 50%);
}

.hero-content {
    text-align: center;
    z-index: 2;
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-logo {
    width: 200px;
    height: auto;
    margin-bottom: 2rem;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.hero-title {
    font-size: 4rem;
    margin-bottom: 1rem;
    background: var(--gradient-3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--gray-text);
    margin-bottom: 2rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.btn {
    padding: 15px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-block;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: var(--gradient-1);
    color: var(--light-text);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--light-text);
    border: 2px solid var(--accent-color);
}

.btn-secondary:hover {
    background: var(--accent-color);
    transform: translateY(-3px);
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-indicator i {
    font-size: 2rem;
    color: var(--accent-color);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0) translateX(-50%); }
    40% { transform: translateY(-20px) translateX(-50%); }
    60% { transform: translateY(-10px) translateX(-50%); }
}

/* Sections */
section {
    padding: 100px 0;
}

.section-title {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 1rem;
    background: var(--gradient-3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    text-align: center;
    color: var(--gray-text);
    font-size: 1.2rem;
    margin-bottom: 3rem;
}

/* About Section */
.about {
    background: linear-gradient(135deg, #1a0f00 0%, #000000 50%, #1a0f00 100%);
    position: relative;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.about-text h3 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.about-text h3:first-child {
    margin-top: 0;
}

.values-list {
    list-style: none;
    margin: 1rem 0;
}

.values-list li {
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.values-list i {
    color: var(--success-color);
}

/* Games Section */
.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

/* Main Games Showcase */
.main-games-showcase {
    margin-bottom: 4rem;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(255, 153, 51, 0.1) 0%, rgba(0, 0, 0, 0.5) 100%);
    border-radius: 20px;
    border: 2px solid rgba(255, 153, 51, 0.3);
}

.showcase-title {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 2rem;
    color: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.main-games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.main-game-card {
    background: linear-gradient(135deg, rgba(26, 15, 0, 0.9) 0%, rgba(0, 0, 0, 0.9) 100%);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s;
    border: 2px solid var(--accent-color);
    position: relative;
    overflow: hidden;
}

.main-game-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--accent-color), transparent);
    border-radius: 20px;
    opacity: 0;
    transition: opacity 0.3s;
    z-index: -1;
}

.main-game-card:hover::before {
    opacity: 0.3;
}

.main-game-card:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 20px 40px rgba(255, 153, 51, 0.4);
}

.main-game-icon-large {
    width: 100px;
    height: 100px;
    margin: 0 auto 1rem;
    background: var(--gradient-1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(255, 153, 51, 0.3);
}

.main-game-icon-large i {
    font-size: 3rem;
}

.main-game-hours {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--accent-color);
    margin: 1rem 0;
    text-shadow: 0 0 20px rgba(255, 153, 51, 0.5);
}

.main-game-hours-label {
    font-size: 0.9rem;
    color: var(--gray-text);
}

.main-game-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--gradient-1);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
}

.other-games-title {
    font-size: 1.8rem;
    text-align: center;
    margin-bottom: 2rem;
    color: var(--light-text);
}

.game-card {
    background: linear-gradient(135deg, rgba(26, 15, 0, 0.8) 0%, rgba(0, 0, 0, 0.8) 100%);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.game-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-color);
    box-shadow: 0 20px 40px rgba(0, 212, 255, 0.2);
}

.game-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1rem;
    background: var(--gradient-1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.game-icon i {
    font-size: 2.5rem;
}

.game-card h3 {
    margin-bottom: 0.5rem;
}

.game-status {
    display: inline-block;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    margin-top: 1rem;
}

.game-status.active {
    background: rgba(0, 255, 136, 0.2);
    color: var(--success-color);
}

/* Servers Section */
.servers {
    background: linear-gradient(135deg, #1a0f00 0%, #000000 50%, #1a0f00 100%);
    position: relative;
}

.servers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.server-card {
    background: linear-gradient(135deg, rgba(26, 15, 0, 0.8) 0%, rgba(0, 0, 0, 0.8) 100%);
    padding: 2rem;
    border-radius: 20px;
    border: 2px solid transparent;
    transition: all 0.3s;
}

.server-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.server-card.discord:hover {
    border-color: #5865F2;
}

.server-card.teamspeak:hover {
    border-color: #2580C3;
}

.server-card.steam:hover {
    border-color: #00adee;
}

.server-card.youtube:hover {
    border-color: #FF0000;
}

.server-card.twitch:hover {
    border-color: #9146FF;
}

.server-card.website:hover {
    border-color: var(--accent-color);
}

.server-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1rem;
    background: var(--gradient-2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.server-icon i {
    font-size: 2.5rem;
}

.server-card h3 {
    text-align: center;
    margin-bottom: 0.5rem;
}

.server-card > p {
    text-align: center;
    color: var(--gray-text);
    margin-bottom: 1rem;
}

.server-features {
    list-style: none;
    margin: 1.5rem 0;
}

.server-features li {
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.server-features i {
    color: var(--accent-color);
}

.btn-discord { background: #5865F2; color: white; width: 100%; text-align: center; }
.btn-teamspeak { background: #2580C3; color: white; width: 100%; text-align: center; }
.btn-steam { background: #00adee; color: white; width: 100%; text-align: center; }
.btn-youtube { background: #FF0000; color: white; width: 100%; text-align: center; }
.btn-twitch { background: #9146FF; color: white; width: 100%; text-align: center; }
.btn-website { background: var(--accent-color); color: white; width: 100%; text-align: center; }

/* Team Section */
.team-category {
    margin-bottom: 4rem;
}

.category-title {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--accent-color);
    display: flex;
    align-items: center;
    gap: 10px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 2rem;
}

.team-member {
    background: linear-gradient(135deg, rgba(26, 15, 0, 0.8) 0%, rgba(0, 0, 0, 0.8) 100%);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.team-member:hover {
    transform: translateY(-10px);
    border-color: var(--accent-color);
    box-shadow: 0 20px 40px rgba(0, 212, 255, 0.2);
}

.member-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin: 0 auto 1rem;
    background: var(--gradient-1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    border: 4px solid var(--accent-color);
    overflow: hidden;
}

.member-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 50%;
}

.member-name {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--light-text);
}

.member-role {
    color: var(--accent-color);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.member-description {
    color: var(--gray-text);
    font-size: 0.9rem;
    line-height: 1.4;
}

.member-main-game {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin: 12px 0 8px 0;
    padding: 8px 12px;
    background: linear-gradient(135deg, rgba(255, 153, 51, 0.2), rgba(255, 102, 0, 0.1));
    border: 1px solid rgba(255, 153, 51, 0.3);
    border-radius: 8px;
    color: #ff9933;
    font-weight: 600;
    font-size: 0.9rem;
}

.member-main-game i {
    font-size: 1.1rem;
}

.member-social-links {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin: 12px 0;
}

.member-social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 153, 51, 0.2), rgba(255, 102, 0, 0.1));
    border: 1px solid rgba(255, 153, 51, 0.3);
    color: #ff9933;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.member-social-links a:hover {
    background: linear-gradient(135deg, rgba(255, 153, 51, 0.4), rgba(255, 102, 0, 0.2));
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 153, 51, 0.3);
}

.member-joined {
    margin-top: 1rem;
    font-size: 0.8rem;
    color: var(--gray-text);
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #000000 0%, #1a0f00 100%);
    padding: 3rem 0 1rem;
    border-top: 1px solid rgba(255, 153, 51, 0.3);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-logo {
    height: 60px;
    margin-bottom: 1rem;
}

.footer-section h4 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: var(--gray-text);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: var(--light-text);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 153, 51, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.social-links a:hover {
    background: var(--accent-color);
    transform: translateY(-5px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 153, 51, 0.2);
    color: var(--gray-text);
}

/* Responsive Design */
@media (max-width: 968px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: rgba(10, 14, 39, 0.98);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .about-content {
        grid-template-columns: 1fr;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 600px) {
    .games-grid,
    .servers-grid {
        grid-template-columns: 1fr;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }
}
