@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;800&display=swap');

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

body {
    background-color: #0b0b0e;
    color: #e0e0e0;
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

/* Header & Navigation */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(11, 11, 14, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

@media (min-width: 992px) {
    .header-container {
        flex-direction: row;
        justify-content: space-between;
        gap: 0;
    }
}

.logo-link {
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-img {
    height: 45px;
    width: auto;
    object-fit: contain;
}

.logo-fallback {
    font-size: 26px;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: 1px;
    text-transform: uppercase;
}

nav ul {
    display: flex;
    gap: 30px;
    list-style: none;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

nav a {
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #888;
}

nav a:hover, nav a.active {
    color: #ffffff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

/* Layout Structure */
main {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    min-height: 100vh;
    padding-top: 100px;
}

.section {
    width: 100%;
    padding: 100px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* Typography */
h1 {
    font-size: clamp(40px, 6vw, 72px);
    font-weight: 800;
    margin-bottom: 24px;
    color: #ffffff;
    line-height: 1.1;
    letter-spacing: -1px;
}

h2 {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 800;
    margin-bottom: 24px;
    color: #ffffff;
}

h3 {
    font-size: 24px;
    font-weight: 600;
    color: #dddddd;
    margin: 40px 0 20px;
}

p {
    font-size: clamp(16px, 2vw, 20px);
    color: #aaaaaa;
    max-width: 800px;
    margin: 0 auto 30px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 20px 50px;
    font-size: 18px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 50px;
    background: #202028;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    cursor: pointer;
}

.btn:hover {
    background: #2a2a35;
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
    color: #ffffff;
}

/* Image Styles */
.stylish-img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.5s ease, box-shadow 0.5s ease;
    display: block;
}

.stylish-img:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.7);
}

/* Hero Section */
.hero-section {
    padding: 150px 20px 100px;
    background: radial-gradient(circle at center, #1a1a24 0%, #0b0b0e 70%);
}

.hero-subtitle {
    color: #777;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 20px;
    display: block;
}

.hero-container {
    gap: 40px;
    text-align: center;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-image {
    width: 100%;
    max-width: 600px;
}

@media (min-width: 992px) {
    .hero-container {
        flex-direction: row;
        text-align: left;
        justify-content: space-between;
    }
    
    .hero-content {
        flex: 1;
        align-items: flex-start;
        padding-right: 40px;
    }
    
    .hero-content p {
        margin: 0 0 30px 0;
    }
    
    .hero-image {
        flex: 1;
    }
}

/* Game Section (Dominant Frame) */
.game-section {
    background: linear-gradient(180deg, #0b0b0e 0%, #15151c 50%, #0b0b0e 100%);
    padding: 120px 20px;
}

.game-wrapper {
    width: 90%;
    max-width: 1300px;
    margin: 40px auto;
    border-radius: 20px;
    overflow: hidden;
    background: #000000;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.game-iframe {
    width: 100%;
    height: 800px;
    border: none;
    display: block;
    background: #000000;
}

@media (max-width: 1024px) {
    .game-wrapper {
        width: 95%;
        border-radius: 16px;
    }
    .game-iframe {
        height: 650px;
    }
}

@media (max-width: 768px) {
    .game-wrapper {
        width: 100%;
        border-radius: 12px;
    }
    .game-iframe {
        height: 550px;
    }
}

/* Info Section Styles */
.info-container {
    gap: 50px;
}

.info-image {
    width: 100%;
    max-width: 600px;
}

@media (min-width: 992px) {
    .info-container {
        flex-direction: row-reverse;
        justify-content: space-between;
        align-items: center;
    }
    
    .info-content.content-block {
        flex: 1;
        text-align: left;
        margin: 0;
        padding-left: 40px;
    }
    
    .info-content.content-block p {
        text-align: left;
        margin: 0 0 30px 0;
    }
    
    .info-image {
        flex: 1;
    }
}

/* Content Pages */
.page-header {
    padding: 150px 20px 80px;
    background: radial-gradient(circle at center, #15151c 0%, #0b0b0e 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.content-block {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.content-block p {
    text-align: center;
}

.content-block ul {
    list-style: none;
    margin-bottom: 40px;
    width: 100%;
}

.content-block li {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 15px;
    color: #aaaaaa;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Contact Form */
.contact-form {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 25px;
    align-items: center;
}

.contact-form input, 
.contact-form textarea {
    width: 100%;
    padding: 20px;
    background: #121218;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: #ffffff;
    font-family: inherit;
    font-size: 16px;
    transition: all 0.3s;
    text-align: center;
}

.contact-form input:focus, 
.contact-form textarea:focus {
    outline: none;
    border-color: #555566;
    background: #181820;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.05);
}

.contact-form textarea {
    resize: vertical;
    min-height: 180px;
}

/* Footer & Disclaimers */
footer {
    background: #08080a;
    padding: 100px 20px 50px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.disclaimer-box {
    background: rgba(255, 50, 50, 0.03);
    border: 1px solid rgba(255, 50, 50, 0.15);
    padding: 40px;
    border-radius: 16px;
    max-width: 1100px;
    margin: 0 auto 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.disclaimer-box h4 {
    color: #ff5555;
    margin-bottom: 20px;
    font-size: 24px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.disclaimer-box p {
    font-size: 15px;
    margin-bottom: 15px;
    color: #999999;
    max-width: 900px;
}

.badges {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 30px;
}

.badge {
    background: #15151c;
    padding: 12px 25px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 800;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-nav {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 50px;
    max-width: 1000px;
}

.footer-nav a {
    font-size: 15px;
    color: #666666;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-nav a:hover {
    color: #ffffff;
}

.copyright {
    color: #444444;
    font-size: 14px;
    margin-top: 20px;
    font-weight: 600;
    letter-spacing: 1px;
}