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

body {
    background: #000;
    color: #fff;
    font-family: 'Arial', sans-serif;
    overflow-x: hidden;
}

.navbar {
    background: rgba(0, 0, 0, 0.95);
    padding: 20px 0;
    border-bottom: 2px solid #ff6600;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

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

.nav-logo {
    font-size: 28px;
    font-weight: bold;
    color: #ff6600;
    text-shadow: 0 0 10px rgba(255, 102, 0, 0.5);
}

.nav-menu {
    display: flex;
    gap: 40px;
}

.nav-link {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s;
}

.nav-link:hover {
    color: #ff6600;
}

.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(45deg, #000 0%, #1a1a1a 100%);
    position: relative;
    margin-top: 80px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(255, 102, 0, 0.15) 0%, transparent 70%);
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 120px;
    font-weight: bold;
    background: linear-gradient(45deg, #fff 30%, #ff6600 70%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
    text-shadow: 0 0 30px rgba(255, 102, 0, 0.5);
}

.hero-subtitle {
    font-size: 20px;
    color: #ccc;
    margin-bottom: 40px;
    max-width: 500px;
}

.play-button {
    background: #ff6600;
    color: #000;
    border: none;
    padding: 15px 40px;
    font-size: 18px;
    font-weight: bold;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
    margin-bottom: 30px;
}

.play-button:hover {
    background: #ff8533;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 102, 0, 0.4);
}

.online-block {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: rgba(255, 102, 0, 0.1);
    padding: 15px 25px;
    border-radius: 25px;
    border: 1px solid #ff6600;
    backdrop-filter: blur(10px);
}

.online-dot {
    width: 10px;
    height: 10px;
    background: #00ff00;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.online-text {
    font-size: 16px;
    color: #fff;
}

.online-count {
    color: #ff6600;
    font-weight: bold;
    font-size: 18px;
}

.download-section {
    padding: 100px 20px;
    background: #0a0a0a;
}

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

.section-title {
    text-align: center;
    font-size: 48px;
    margin-bottom: 60px;
    color: #fff;
    text-shadow: 0 0 15px rgba(255, 102, 0, 0.3);
}

.launchers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 800px;
    margin: 0 auto;
}

.launcher-card {
    background: linear-gradient(145deg, #1a1a1a, #0d0d0d);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid #333;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.launcher-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 102, 0, 0.1), transparent);
    transition: left 0.5s;
}

.launcher-card:hover::before {
    left: 100%;
}

.launcher-card:hover {
    border-color: #ff6600;
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(255, 102, 0, 0.2);
}

.launcher-icon {
    margin-bottom: 20px;
}

.launcher-icon img {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

.launcher-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #fff;
}

.launcher-card p {
    color: #ccc;
    margin-bottom: 25px;
    line-height: 1.5;
}

.details-btn {
    background: transparent;
    color: #ff6600;
    border: 2px solid #ff6600;
    padding: 12px 30px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    transition: all 0.3s;
    margin-bottom: 20px;
}

.details-btn:hover {
    background: #ff6600;
    color: #000;
    box-shadow: 0 0 20px rgba(255, 102, 0, 0.4);
}

.download-count {
    color: #666;
    font-size: 14px;
}

.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
}

.modal-content {
    background: linear-gradient(145deg, #1a1a1a, #0d0d0d);
    border: 2px solid #ff6600;
    border-radius: 15px;
    padding: 40px;
    max-width: 500px;
    width: 90%;
    position: relative;
    transform: scale(0.7);
    transition: transform 0.3s ease;
}

.modal-overlay.active .modal-content {
    transform: scale(1);
}

.close-btn {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    color: #ff6600;
    font-size: 30px;
    cursor: pointer;
    transition: color 0.3s;
}

.close-btn:hover {
    color: #ff8533;
}

.modal-header h2 {
    color: #ff6600;
    margin-bottom: 20px;
    text-align: center;
}

.modal-section {
    margin-bottom: 25px;
}

.modal-section h3 {
    color: #fff;
    margin-bottom: 10px;
    font-size: 18px;
}

.modal-section p, .modal-section li {
    color: #ccc;
    line-height: 1.5;
}

.modal-section ul {
    list-style: none;
    padding-left: 0;
}

.modal-section li {
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.modal-section li::before {
    content: '•';
    color: #ff6600;
    position: absolute;
    left: 0;
}

.download-btn {
    background: #ff6600;
    color: #000;
    border: none;
    padding: 15px 40px;
    font-size: 18px;
    font-weight: bold;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
    width: 100%;
    margin-bottom: 15px;
}

.download-btn:hover {
    background: #ff8533;
    box-shadow: 0 5px 15px rgba(255, 102, 0, 0.4);
}

.modal-stats {
    text-align: center;
    color: #666;
    font-size: 14px;
}

@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.5; }
    100% { opacity: 1; }
}