* {margin: 0;padding: 0;box-sizing: border-box;}body {font-family: "Exo 2", sans-serif;line-height: 1.6;color: #ffffff;background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);min-height: 100vh;overflow-x: hidden;}/* Navigation */navbar {background: rgba(0, 0, 0, 0.9);backdrop-filter: blur(10px);position: fixed;top: 0;width: 100%;z-index: 1000;padding: 1rem 0;}.nav-container {max-width: 1200px;margin: 0 auto;display: flex;justify-content: space-between;align-items: center;padding: 0 2rem;}.nav-logo {font-family: "Orbitron", monospace;font-size: 1.5rem;font-weight: 900;color: #00d4ff;text-shadow: 0 0 20px #00d4ff;}.nav-menu {display: flex;list-style: none;gap: 2rem;}.nav-link {color: #ffffff;text-decoration: none;font-weight: 400;transition: color 0.3s ease;position: relative;}.nav-link:hover {color: #00d4ff;}.nav-link::after {content: "";position: absolute;bottom: -5px;left: 0;width: 0;height: 2px;background: #00d4ff;transition: width 0.3s ease;}.nav-link:hover::after {width: 100%;}/* Hero Section */.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    padding-top: 80px;
}

.hero-content {
    max-width: 800px;
    z-index: 2;
    margin: 0 auto;
    width: 100%;
}

.hero-title {
    font-family: "Orbitron", monospace;
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #00d4ff, #ff6b6b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
}

.highlight {
    color: #00d4ff;
    text-shadow: 0 0 30px #00d4ff;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: #cccccc;
    margin-bottom: 3rem;
    text-align: center;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
    min-width: 120px;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #00d4ff;
    font-family: "Orbitron", monospace;
}

.stat-label {
    color: #cccccc;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {padding: 1rem 2rem;border: none;border-radius: 50px;font-size: 1.1rem;font-weight: 600;text-decoration: none;transition: all 0.3s ease;cursor: pointer;display: inline-block;}.btn-primary {background: linear-gradient(45deg, #00d4ff, #0099cc);color: white;box-shadow: 0 5px 20px rgba(0, 212, 255, 0.3);}.btn-primary:hover {transform: translateY(-3px);box-shadow: 0 8px 25px rgba(0, 212, 255, 0.4);}.btn-secondary {background: transparent;color: #00d4ff;border: 2px solid #00d4ff;}.btn-secondary:hover {background: #00d4ff;color: white;transform: translateY(-3px);}/* Floating Elements */hero-visual {position: absolute;top: 0;right: 0;width: 100%;height: 100%;pointer-events: none;}.floating-elements {position: relative;width: 100%;height: 100%;}.element {position: absolute;width: 100px;height: 100px;background: linear-gradient(45deg, #00d4ff, #ff6b6b);border-radius: 50%;opacity: 0.1;animation: float 6s ease-in-out infinite;}.element-1 {top: 20%;right: 10%;animation-delay: 0s;}.element-2 {top: 60%;right: 20%;animation-delay: 2s;}.element-3 {top: 40%;right: 5%;animation-delay: 4s;}@keyframes float {0%, 100% {transform: translateY(0px) rotate(0deg);}50% {transform: translateY(-20px) rotate(180deg);}}/* Sections */section {
    padding: 5rem 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.section-title {
    text-align: center;
    font-family: "Orbitron", monospace;
    font-size: 3rem;
    margin-bottom: 3rem;
    color: #00d4ff;
    text-shadow: 0 0 20px #00d4ff;
}

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

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 212, 255, 0.2);
}

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

.feature-card h3 {
    font-family: "Orbitron", monospace;
    color: #00d4ff;
    margin-bottom: 1rem;
}

.feature-card p {
    color: #cccccc;
    line-height: 1.6;
}

/* Updates Grid */
.updates-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.update-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    position: relative;
}

.update-date {
    position: absolute;
    top: -10px;
    right: 20px;
    background: #00d4ff;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.update-card h3 {
    color: #00d4ff;
    margin-bottom: 1rem;
    font-family: "Orbitron", monospace;
}

.update-card p {
    color: #cccccc;
    margin-bottom: 1.5rem;
}

.update-link {
    color: #00d4ff;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.update-link:hover {
    color: #ff6b6b;
}

/* Footer */
footer {
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    padding: 3rem 0 1rem;
    margin-top: 5rem;
}

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

.footer-section h3 {
    color: #00d4ff;
    margin-bottom: 1rem;
    font-family: "Orbitron", monospace;
}

.footer-section p, .footer-section li {
    color: #cccccc;
    margin-bottom: 0.5rem;
}

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

.footer-section a {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #00d4ff;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #888888;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    .nav-menu {
        display: none;
    }
    .hamburger {
        display: block;
    }
    .hamburger span {
        display: block;
        width: 25px;
        height: 3px;
        background: #00d4ff;
        margin: 5px 0;
        transition: 0.3s;
    }
    .hamburger.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    .hamburger.active span:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }
}

/* Mobile Menu */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: rgba(0, 0, 0, 0.95);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
    }
    .nav-menu.active {
        left: 0;
    }
    .nav-menu li {
        margin: 2.5rem 0;
    }
}

/* Notification System */
@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOut {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(100%);
        opacity: 0;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Enhanced Game Cards */
.game-card {
    position: relative;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1) 0%, rgba(0, 0, 0, 0.8) 100%);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.game-card:hover {
    transform: translateY(-10px);
    border-color: rgba(0, 212, 255, 0.6);
    box-shadow: 0 20px 40px rgba(0, 212, 255, 0.2);
}

.game-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    display: block;
}

.game-category {
    background: linear-gradient(45deg, #00d4ff, #0099cc);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    display: inline-block;
}

.game-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.game-actions .btn {
    min-width: 120px;
}

/* Button Styles */
.btn {
    padding: 12px 24px;
    border: none;
    border-radius: 25px;
    font-family: 'Exo 2', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(45deg, #00d4ff, #0099cc);
    color: white;
}

.btn-primary:hover {
    background: linear-gradient(45deg, #0099cc, #00d4ff);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 212, 255, 0.3);
}

.btn-secondary {
    background: transparent;
    color: #00d4ff;
    border: 2px solid #00d4ff;
}

.btn-secondary:hover {
    background: #00d4ff;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 212, 255, 0.3);
}

/* Games Controls */
.games-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    gap: 1rem;
    flex-wrap: wrap;
}

.search-container {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.search-input {
    padding: 12px 20px;
    border: 2px solid rgba(0, 212, 255, 0.3);
    border-radius: 25px;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    font-family: 'Exo 2', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
    min-width: 250px;
}

.search-input:focus {
    outline: none;
    border-color: #00d4ff;
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
}

.search-input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.clear-search {
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.clear-search:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
}

.category-filter {
    padding: 12px 20px;
    border: 2px solid rgba(0, 212, 255, 0.3);
    border-radius: 25px;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    font-family: 'Exo 2', sans-serif;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 150px;
}

.category-filter:focus {
    outline: none;
    border-color: #00d4ff;
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
}

.category-filter option {
    background: #000;
    color: white;
}

/* Responsive Games Controls */
@media (max-width: 768px) {
    .games-controls {
        flex-direction: column;
        align-items: stretch;
    }
    
    .search-input {
        min-width: auto;
        width: 100%;
    }
    
    .category-filter {
        min-width: auto;
        width: 100%;
    }
}
