* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: #0a0a0a;
    color: #fff;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.pink {
    color: rgb(255, 105, 180);
}

.white {
    color: #fff;
}

.pink_text {
    color: rgb(255, 105, 180);
}

nav {
    padding: 1.5rem 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo img {
    height: 32px;
    width: 32px;
}

.logo_text {
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1;
}

.nav_links {
    display: flex;
    gap: 2rem;
}

.nav_links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.3s;
    font-size: 0.95rem;
    font-weight: 500;
}

.nav_links a:hover,
.nav_links a.active {
    color: rgb(255, 105, 180);
}

.hero {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 4rem 2rem;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.hero p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 2.5rem;
    max-width: 600px;
}

.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: rgb(255, 105, 180);
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s;
    font-size: 1rem;
}

.btn:hover {
    background: rgb(255, 130, 195);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 105, 180, 0.3);
}

.content_container {
    flex: 1;
    padding: 4rem 3rem;
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
}

.page_header {
    margin-bottom: 3rem;
}

.page_header h1 {
    font-size: 3rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 0.5rem;
}

.page_subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.5);
}

.games_grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 2rem;
}

.game_card_modern {
    background: linear-gradient(145deg, rgba(255, 105, 180, 0.05), rgba(0, 0, 0, 0.3));
    border: 1px solid rgba(255, 105, 180, 0.2);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.game_card_modern:hover {
    transform: translateY(-8px);
    border-color: rgb(255, 105, 180);
    box-shadow: 0 20px 60px rgba(255, 105, 180, 0.3);
}

.card_header {
    background: rgba(255, 105, 180, 0.1);
    padding: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 105, 180, 0.2);
}

.card_header h2 {
    font-size: 1.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: #fff;
}

.slot_badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(0, 0, 0, 0.4);
    padding: 0.75rem 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 105, 180, 0.3);
}

.slot_number {
    font-size: 2rem;
    font-weight: 700;
    color: rgb(255, 105, 180);
    line-height: 1;
}

.slot_text {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.card_body {
    padding: 2rem;
}

.info_section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
    margin-bottom: 2rem;
}

.info_row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.info_label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
}

.info_value {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
}

.requirements_section {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.requirements_section h3 {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
    font-weight: 600;
}

.req_list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.req_list li {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    padding-left: 1.5rem;
    position: relative;
}

.req_list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: rgb(255, 105, 180);
    font-weight: 700;
}

.progress_section {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.progress_bar_modern {
    width: 100%;
    height: 12px;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.progress_fill_modern {
    height: 100%;
    background: linear-gradient(90deg, rgb(255, 105, 180), rgb(255, 140, 200));
    box-shadow: 0 0 20px rgba(255, 105, 180, 0.5);
    transition: width 0.5s ease;
}

.capacity_text {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    text-align: center;
}

.status_legend_box {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 2rem;
}

.status_legend_box h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
}

.legend_grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.legend_card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.legend_dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    flex-shrink: 0;
    animation: pulse_dot 2s ease-in-out infinite;
}

.legend_text {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.legend_name {
    font-size: 0.95rem;
    font-weight: 600;
    color: #fff;
    text-transform: capitalize;
}

.legend_desc {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
}

.services_box {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 2rem;
}

.services_box h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
}

.services_grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.service_card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.service_card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 105, 180, 0.3);
    transform: translateX(8px);
}

.service_left {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.service_dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    flex-shrink: 0;
    animation: pulse_dot 2s ease-in-out infinite;
}

.service_name {
    font-size: 1.25rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: #fff;
}

.service_status_badge {
    padding: 0.6rem 1.5rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.dot_green {
    background: #22c55e;
    box-shadow: 0 0 15px rgba(34, 197, 94, 0.6);
}

.badge_green {
    background: rgba(34, 197, 94, 0.15);
    color: #22c55e;
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.dot_yellow {
    background: #eab308;
    box-shadow: 0 0 15px rgba(234, 179, 8, 0.6);
}

.badge_yellow {
    background: rgba(234, 179, 8, 0.15);
    color: #eab308;
    border: 1px solid rgba(234, 179, 8, 0.3);
}

.dot_red {
    background: #ef4444;
    box-shadow: 0 0 15px rgba(239, 68, 68, 0.6);
}

.badge_red {
    background: rgba(239, 68, 68, 0.15);
    color: #ef4444;
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.dot_blue {
    background: #3b82f6;
    box-shadow: 0 0 15px rgba(59, 130, 246, 0.6);
}

.badge_blue {
    background: rgba(59, 130, 246, 0.15);
    color: #3b82f6;
    border: 1px solid rgba(59, 130, 246, 0.3);
}

@keyframes pulse_dot {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.6;
        transform: scale(0.95);
    }
}

footer {
    padding: 2rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.3);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    nav {
        padding: 1rem 1.5rem;
        flex-direction: column;
        gap: 1rem;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .content_container {
        padding: 2rem 1.5rem;
    }

    .page_header h1 {
        font-size: 2rem;
    }

    .games_grid {
        grid-template-columns: 1fr;
    }

    .info_section {
        grid-template-columns: 1fr;
    }

    .legend_grid {
        grid-template-columns: 1fr;
    }
}

.subtitle {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.1rem;
    margin-top: 0.5rem;
}

.info_banner_top {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 0.9rem 1.1rem;
    margin: 1.5rem 0 2rem 0;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
}

.info_banner_top svg {
    width: 18px;
    height: 18px;
    color: #ff006e;
    flex-shrink: 0;
}

.games_grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.2rem;
    margin: 2rem 0;
}

.game_card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1.2rem;
}

.game_icon {
    width: 40px;
    height: 40px;
    margin-bottom: 0.8rem;
    color: #ff006e;
}

.game_icon svg {
    width: 100%;
    height: 100%;
}

.game_name {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    letter-spacing: 1px;
}

.game_status {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.35rem 0.8rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 1.2rem;
    letter-spacing: 0.5px;
}

.game_status.online {
    background: rgba(0, 255, 136, 0.1);
    color: #00ff88;
}

.game_status.development {
    background: rgba(59, 130, 246, 0.1);
    color: #3b82f6;
}

.status_dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    animation: pulse_animation 2s ease-in-out infinite;
}

.game_status.online .status_dot {
    background: #00ff88;
}

.game_status.development .status_dot {
    background: #3b82f6;
}

@keyframes pulse_animation {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.pricing_section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.8rem;
    margin: 1.2rem 0;
}

.price_card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 0.8rem;
    text-align: center;
}

.price_label {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.4rem;
}

.price_amount {
    font-size: 1.6rem;
    font-weight: 700;
    color: #ff006e;
}

.slots_section {
    margin: 1.2rem 0;
}

.slots_bar {
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 0.6rem;
}

.slots_fill {
    height: 100%;
    background: linear-gradient(90deg, #ff006e, #ff4d94);
    border-radius: 10px;
    transition: width 0.3s ease;
}

.slots_info {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
}

.requirements {
    margin: 1.2rem 0;
}

.req_title {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.6rem;
}

.req_list {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.req_item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.85rem;
}

.req_item svg {
    width: 16px;
    height: 16px;
    color: #00ff88;
}

.game_btn {
    display: block;
    width: 100%;
    padding: 0.8rem;
    background: linear-gradient(135deg, #ff006e, #ff4d94);
    color: white;
    text-align: center;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 1.2rem;
    transition: all 0.3s ease;
    font-size: 0.85rem;
}

.game_btn:hover {
    transform: scale(1.02);
    box-shadow: 0 5px 20px rgba(255, 0, 110, 0.4);
}

.status_page_header {
    text-align: center;
    margin-bottom: 3rem;
}

.status_legend {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
}

.legend_item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.legend_dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.legend_dot.online {
    background: #00ff88;
}

.legend_dot.updating {
    background: #fbbf24;
}

.legend_dot.maintenance {
    background: #ef4444;
}

.legend_dot.development {
    background: #3b82f6;
}

.status_grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.status_card_new {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem;
}

.status_card_header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.status_icon {
    width: 50px;
    height: 50px;
    color: #ff006e;
}

.status_icon svg {
    width: 100%;
    height: 100%;
}

.status_info h3 {
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
    letter-spacing: 1px;
}

.status_info p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.status_badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.2rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.status_badge.online {
    background: rgba(0, 255, 136, 0.15);
    color: #00ff88;
}

.status_badge.development {
    background: rgba(59, 130, 246, 0.15);
    color: #3b82f6;
}

.pulse_dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    animation: pulse_animation 2s ease-in-out infinite;
}

.status_badge.online .pulse_dot {
    background: #00ff88;
    box-shadow: 0 0 10px #00ff88;
}

.status_badge.development .pulse_dot {
    background: #3b82f6;
    box-shadow: 0 0 10px #3b82f6;
}

@media (max-width: 768px) {
    .games_grid {
        grid-template-columns: 1fr;
    }
    
    .status_grid {
        grid-template-columns: 1fr;
    }
    
    .status_legend {
        gap: 1rem;
    }
}