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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #0f0f1e 0%, #1a1a2e 100%);
    color: #e0e0e0;
    line-height: 1.8;
}

/* Header & Navigation */
header {
    background: rgba(15, 15, 30, 0.95);
    padding: 10px 0;
    border-bottom: 2px solid #00c8ff;
    position: sticky;
    top: 0;
    z-index: 100;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: auto;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo img {
    height: 38px;
    vertical-align: middle;
}

.logo-text .highlight {
    color: #00c8ff;
    font-weight: 800;
    font-size: 26px;
}

nav {
    display: flex;
    align-items: center;
    gap: 0;
}

nav a {
    color: #e0e0e0;
    text-decoration: none;
    padding: 10px 20px;
    font-weight: 500;
    transition: all 0.3s;
    display: inline-block;
}

nav a:hover {
    color: #ff006e;
    background: rgba(255, 0, 110, 0.1);
}

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

.hamburger span {
    width: 25px;
    height: 3px;
    background: #00c8ff;
    border-radius: 3px;
    transition: all 0.3s;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.hero {
    padding: 100px 0;
    text-align: center;
    background: linear-gradient(135deg, rgba(255, 0, 110, 0.1) 0%, rgba(0, 200, 255, 0.1) 100%);
}

.hero h1 {
    font-size: 52px;
    margin-bottom: 0;
    color: #fff;
    text-shadow: 0 0 30px rgba(255, 0, 110, 0.3);
}

.hero h4 {
    font-size: 22px;
    margin: -13px 0 20px 0;
    color: #b7b7b7;
    font-weight: 500;
    letter-spacing: 2px;
}

.hero .subtitle {
    font-size: 20px;
    color: #00c8ff;
    margin-bottom: 30px;
}

.hero p {
    font-size: 18px;
    color: #b0b0b0;
    max-width: 600px;
    margin: 0 auto;
}

/* Section Styling */
section {
    padding: 80px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

section:last-of-type {
    border-bottom: none;
}

h2 {
    font-size: 40px;
    margin-bottom: 40px;
    color: #fff;
    text-align: center;
    position: relative;
    padding-bottom: 20px;
}

h2:after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #ff006e, #00c8ff);
    margin: 20px auto 0;
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin-bottom: 40px;
}

.about-content p {
    margin-bottom: 15px;
    font-size: 16px;
    color: #c0c0c0;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.service-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 25px;
    border-radius: 10px;
    border: 1px solid rgba(255, 0, 110, 0.3);
    transition: all 0.3s;
    text-align: center;
}

.service-card:hover {
    background: rgba(255, 0, 110, 0.1);
    border-color: #ff006e;
    transform: translateY(-5px);
}

.service-card h3 {
    color: #00c8ff;
    margin-bottom: 15px;
    font-size: 18px;
}

.service-card p {
    color: #a0a0a0;
    font-size: 14px;
}

/* Games Section */
.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.game-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid rgba(255, 0, 110, 0.2);
    transition: all 0.4s;
    cursor: pointer;
}

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

.game-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.game-card-content {
    padding: 25px;
}

.game-card h3 {
    color: #00c8ff;
    margin-bottom: 10px;
    font-size: 20px;
}

.game-card .status {
    display: inline-block;
    background: rgba(255, 0, 110, 0.3);
    color: #ff006e;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
    margin-bottom: 15px;
}

.game-card p {
    color: #a0a0a0;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 15px;
}

.game-card .cta-btn {
    display: inline-block;
    background: linear-gradient(135deg, #ff006e, #d4006e);
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s;
    font-size: 14px;
}

.game-card .cta-btn:hover {
    background: linear-gradient(135deg, #d4006e, #a80052);
    transform: scale(1.05);
}

/* Contact Section */
.contact-info {
    background: rgba(255, 0, 110, 0.08);
    padding: 40px;
    border-radius: 10px;
    text-align: center;
    margin-bottom: 40px;
}

.contact-info p {
    font-size: 18px;
    margin-bottom: 15px;
}

.contact-info a {
    color: #00c8ff;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
}

.contact-info a:hover {
    color: #ff006e;
}

/* Social Media Icons */
.social-links {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.social-links a {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #ff006e, #d4006e);
    color: #fff;
    border-radius: 50%;
    font-size: 20px;
    transition: all 0.3s;
    text-decoration: none;
}

.social-links a:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 25px rgba(255, 0, 110, 0.3);
    color: #fff;
}

/* Info Section */
.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.info-box {
    padding: 30px;
    background: rgba(255, 255, 255, 0.02);
    border-left: 4px solid #ff006e;
    border-radius: 5px;
}

.info-box h3 {
    color: #ff006e;
    margin-bottom: 15px;
    font-size: 18px;
}

.info-box p {
    color: #a0a0a0;
    font-size: 14px;
    line-height: 1.8;
}

/* Footer */
footer {
    background: rgba(15, 15, 30, 0.98);
    padding: 40px 0;
    text-align: center;
    border-top: 1px solid rgba(255, 0, 110, 0.3);
    color: #666;
    font-size: 14px;
}

footer p {
    margin-bottom: 10px;
}

/* Modal Popup Styling */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.88);
    animation: fadeIn 0.3s ease-in;
    backdrop-filter: blur(6px);
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fadeOut {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
    }
}

@keyframes slideIn {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-content {
    background: linear-gradient(160deg, #0f0f20 0%, #181830 100%);
    margin: auto;
    border: 1px solid rgba(255, 0, 110, 0.35);
    border-radius: 18px;
    width: 92%;
    max-width: 980px;
    max-height: 90vh;
    overflow-y: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.8), 0 0 0 1px rgba(0, 200, 255, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.modal-content::-webkit-scrollbar {
    width: 5px;
}

.modal-content::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.03);
}

.modal-content::-webkit-scrollbar-thumb {
    background: rgba(255, 0, 110, 0.45);
    border-radius: 3px;
}

/* Modal Close Button */
.modal-close-btn {
    position: absolute;
    top: 14px;
    right: 16px;
    color: rgba(255, 255, 255, 0.65);
    font-size: 24px;
    font-weight: 300;
    cursor: pointer;
    z-index: 20;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.12);
    transition: all 0.25s;
    line-height: 1;
    padding-bottom: 4px;
}

.modal-close-btn:hover {
    color: #fff;
    background: rgba(255, 0, 110, 0.5);
    border-color: #ff006e;
    transform: scale(1.1);
}

/* Image Slider */
.game-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 18px 18px 0 0;
    background: #050510;
    flex-shrink: 0;
}

.slider-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.slider-slide {
    min-width: 100%;
    position: relative;
}

.slider-slide img {
    width: 100%;
    height: 360px;
    object-fit: cover;
    display: block;
}

.slider-gradient {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 140px;
    background: linear-gradient(to top, #181830 0%, rgba(24, 24, 48, 0.5) 60%, transparent 100%);
    pointer-events: none;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: #fff;
    font-size: 26px;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s;
    z-index: 5;
    backdrop-filter: blur(4px);
}

.slider-btn:hover {
    background: rgba(255, 0, 110, 0.65);
    border-color: #ff006e;
    transform: translateY(-50%) scale(1.08);
}

.slider-prev {
    left: 14px;
}

.slider-next {
    right: 14px;
}

.slider-dots {
    position: absolute;
    bottom: 14px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 7px;
    z-index: 5;
}

.slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.35);
    cursor: pointer;
    transition: all 0.3s;
    border: none;
    padding: 0;
}

.slider-dot.active {
    background: #ff006e;
    width: 22px;
    border-radius: 4px;
    box-shadow: 0 0 8px rgba(255, 0, 110, 0.6);
}

/* Game Modal Body */
.game-modal-body {
    padding: 28px 36px 36px;
    position: relative;
}

/* Game Title & Meta */
.game-modal-title {
    font-size: 30px;
    font-weight: 800;
    color: #fff;
    margin: 0 0 12px 0;
    line-height: 1.2;
    letter-spacing: -0.5px;
    text-shadow: 0 0 25px rgba(0, 200, 255, 0.25);
}

.game-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.6px;
    text-transform: uppercase;
}

.badge-coming-soon {
    background: rgba(255, 0, 110, 0.18);
    color: #ff006e;
    border: 1px solid rgba(255, 0, 110, 0.4);
}

.badge-in-dev {
    background: rgba(255, 160, 0, 0.15);
    color: #ffaa00;
    border: 1px solid rgba(255, 160, 0, 0.35);
}

.badge-live {
    background: rgba(0, 200, 100, 0.15);
    color: #00c864;
    border: 1px solid rgba(0, 200, 100, 0.35);
}

.badge-genre {
    background: rgba(0, 200, 255, 0.1);
    color: #00c8ff;
    border: 1px solid rgba(0, 200, 255, 0.25);
}

.badge-platform {
    background: rgba(255, 255, 255, 0.06);
    color: #909090;
    border: 1px solid rgba(255, 255, 255, 0.12);
}

/* Tagline */
.game-tagline {
    font-size: 15px;
    color: rgba(160, 200, 230, 0.85);
    font-style: italic;
    margin-bottom: 28px;
    padding: 10px 16px;
    border-left: 3px solid #00c8ff;
    background: rgba(0, 200, 255, 0.05);
    border-radius: 0 8px 8px 0;
    line-height: 1.6;
}

/* Section Labels */
.section-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.section-label::after {
    content: '';
    flex: 1;
    height: 1px;
    background: rgba(255, 255, 255, 0.08);
}

/* Description */
.game-description-section {
    margin-bottom: 32px;
}

.game-description-text {
    font-size: 15px;
    color: #b0b0c8;
    line-height: 1.9;
}

/* Features Grid */
.game-features-section {
    margin-bottom: 8px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
    gap: 12px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 12px;
    padding: 18px 16px;
    transition: all 0.3s;
}

.feature-card:hover {
    background: rgba(0, 200, 255, 0.06);
    border-color: rgba(0, 200, 255, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.feature-icon {
    font-size: 26px;
    margin-bottom: 10px;
    display: block;
}

.feature-title {
    font-size: 13px;
    font-weight: 700;
    color: #e0e0f0;
    margin-bottom: 5px;
}

.feature-desc {
    font-size: 12px;
    color: #707088;
    line-height: 1.55;
}

/* Hero Logo */
.hero-logo {
    max-width: 200px;
    height: auto;
    margin-bottom: 30px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInDown 0.8s ease-out;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Policy & Legal Page Styles */
main {
    padding: 80px 0;
    min-height: 100vh;
}

.policy-container {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 0, 110, 0.2);
    border-radius: 10px;
    padding: 50px;
}

h1 {
    font-size: 48px;
    color: #fff;
    margin-bottom: 0;
    text-shadow: 0 0 30px rgba(255, 0, 110, 0.3);
}

.policy-container h4 {
    font-size: 22px;
    color: #00c8ff;
    margin: 5px 0 20px 0;
    display: block;
    font-weight: 500;
    letter-spacing: 1px;
}

.company-name {
    font-size: 20px;
    color: #00c8ff;
    margin-bottom: 20px;
    display: block;
}

.last-updated {
    color: #808080;
    font-size: 14px;
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255, 0, 110, 0.2);
}

h2 {
    font-size: 28px;
    color: #ff006e;
    margin-top: 40px;
    margin-bottom: 20px;
    position: relative;
    padding-left: 20px;
}

h2:before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 24px;
    background: linear-gradient(90deg, #ff006e, #00c8ff);
}

h3 {
    font-size: 18px;
    color: #00c8ff;
    margin-top: 25px;
    margin-bottom: 15px;
}

h4 {
    font-size: 16px;
    color: #b0b0b0;
    margin-top: 20px;
    margin-bottom: 10px;
    font-weight: 600;
}

p {
    font-size: 15px;
    color: #c0c0c0;
    margin-bottom: 15px;
    line-height: 1.8;
}

ul {
    margin-left: 30px;
    margin-bottom: 20px;
}

li {
    font-size: 15px;
    color: #b0b0b0;
    margin-bottom: 10px;
}

strong {
    color: #fff;
    font-weight: 600;
}

a {
    color: #00c8ff;
    text-decoration: none;
    transition: color 0.3s;
}

a:hover {
    color: #ff006e;
}

.footer-links {
    margin-bottom: 20px;
}

.footer-links a {
    margin: 0 15px;
    font-size: 14px;
}

/* Back Button */
.back-button {
    display: inline-block;
    margin-bottom: 30px;
    padding: 10px 20px;
    background: rgba(255, 0, 110, 0.2);
    color: #00c8ff;
    border: 1px solid #00c8ff;
    border-radius: 5px;
    text-decoration: none;
    transition: all 0.3s;
    font-weight: 500;
}

.back-button:hover {
    background: rgba(0, 200, 255, 0.2);
    color: #ff006e;
    border-color: #ff006e;
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 36px;
    }

    .hero .subtitle {
        font-size: 16px;
    }

    h2 {
        font-size: 28px;
    }

    h1 {
        font-size: 32px;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    header .container {
        flex-direction: row;
        gap: 0;
    }

    .hamburger {
        display: flex;
    }

    nav {
        display: none;
        position: absolute;
        top: 60px;
        left: 0;
        right: 0;
        flex-direction: column;
        background: rgba(15, 15, 30, 0.98);
        border-bottom: 2px solid #00c8ff;
        border-top: 2px solid #00c8ff;
    }

    nav.active {
        display: flex;
    }

    nav a {
        padding: 15px 20px;
        margin-left: 0;
        border-bottom: 1px solid rgba(255, 0, 110, 0.2);
    }

    .games-grid {
        grid-template-columns: 1fr;
    }

    section {
        padding: 50px 0;
    }

    .modal-content {
        width: 96%;
        max-height: 94vh;
        border-radius: 14px;
    }

    .slider-slide img {
        height: 220px;
    }

    .game-modal-body {
        padding: 18px 18px 24px;
    }

    .game-modal-title {
        font-size: 22px;
    }

    .features-grid {
        grid-template-columns: 1fr 1fr;
    }

    .game-tagline {
        font-size: 14px;
    }

    .policy-container {
        padding: 30px 20px;
    }

    main {
        padding: 40px 0;
    }

    p,
    li {
        font-size: 14px;
    }
}