/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: #15141A;
    color: #fff;
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    width: 100%;
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #2C2B30;
    border-bottom: 1px solid hsla(0,0%,100%,.2);
    z-index: 1000;
    padding: 14px 0;
    transition: all 0.3s ease;
}

header .container {
    max-width: unset;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 15px;
    flex-wrap: wrap;
    width: 100%;
    max-width: 100%;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    font-size: 24px;
    font-weight: bold;
    color: #FF9B85;
    max-width: 200px;
}

.logo img {
    height: 40px;
    width: auto;
    margin-right: 10px;
}

/* Navigation */
.nav {
    display: none;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-list a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
    padding: 8px 16px;
    border-radius: 8px;
}

.nav-list a:hover {
    color: #FF9B85;
}

.nav-list a.active {
    color: #FF9B85;
}

.nav-list a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(110deg, #FF9B85 0%, #FF1847 100%);
    transition: width 0.3s ease;
}

.nav-list a:hover::after,
.nav-list a.active::after {
    width: 80%;
}

/* CTA Buttons */
.cta-buttons {
    display: flex;
    gap: 10px;
}

.btn {
    padding: 10px 44px;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 14px;
    gap: 10px;
}

.btn-primary {
    background: linear-gradient(110deg, #FF9B85 0%, #FF1847 100%);
    color: #fff;
    box-shadow: 0 4px 15px rgba(255, 155, 133, 0.4);
}

.btn-primary:hover {
    transform: scale(.98);
}

.btn-outline {
    color: #fff;
    border: 1px solid #FF9B85;
    background: linear-gradient(109deg,#513C38 0,#50232C 100%);
}

.btn-outline:hover {
    transform: scale(.98);
}

/* Mobile Menu Toggle */
.mobile-toggle {
    display: flex;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
    background: none;
    border: none;
}

.mobile-toggle span {
    width: 25px;
    height: 3px;
    background: #FF9B85;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.mobile-toggle.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
    transform: rotate(45deg) translate(-6px, -7px);
}


.cta-buttons {
    order: 3;
    width: 100%;
    margin-top: 10px;
    justify-content: center;
}

.header-content {
    flex-wrap: wrap;
}

/* Mobile Navigation */
.mobile-nav {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    max-width: 100vw;
    height: calc(100vh - 70px);
    background: rgba(21, 20, 26, 0.98);
    backdrop-filter: blur(10px);
    transition: left 0.3s ease;
    z-index: 999;
    overflow-y: auto;
    overflow-x: hidden;
}

.mobile-nav.active {
    left: 0;
}

.mobile-nav-list {
    list-style: none;
    padding: 30px 20px;
    width: 100%;
    max-width: 100%;
}

.mobile-nav-list li {
    margin-bottom: 20px;
}

.mobile-nav-list a {
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    display: block;
    padding: 15px;
    border-radius: 10px;
    transition: all 0.3s ease;
    word-wrap: break-word;
    text-align: center;
}

.mobile-nav-list a:hover {
    background: hsla(0, 0%, 100%, 0.1);
    color: #FF9B85;
}

.mobile-nav-list a.active {
    background: rgba(255, 155, 133, 0.15);
    color: #FF9B85;
    font-weight: 600;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #15141A;
    width: 100%;
    max-width: 100vw;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    opacity: 0.7;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(81, 60, 56, 0.8) 0%, rgba(80, 35, 44, 0.8) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    padding: 0 20px;
    max-width: 800px;
    width: 100%;
}

.hero h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
    background: linear-gradient(110deg, #FF9B85 0%, #FF1847 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.hero p {
    font-size: 20px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Main Content */
.main-content {
    padding: 80px 0;
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 100vw;
}

.section {
    margin-bottom: 80px;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
    background: linear-gradient(110deg, #FF9B85 0%, #FF1847 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Cards and Game Grid */
.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.game-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid hsla(0, 0%, 100%, 0.1);
    backdrop-filter: blur(10px);
}

.game-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    background: rgba(255, 255, 255, 0.15);
}

.game-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 15px;
    margin-bottom: 20px;
}

.game-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #FF9B85;
}

.game-card p {
    opacity: 0.8;
    margin-bottom: 20px;
    line-height: 1.6;
}

/* Features Section */
.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.feature-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid hsla(0, 0%, 100%, 0.1);
}

.feature-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.feature-item i {
    font-size: 48px;
    color: #FF9B85;
    margin-bottom: 20px;
}

.feature-item h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #FF9B85;
}

/* Tables */
.table-container {
    overflow-x: auto;
    margin-bottom: 30px;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.1);
    width: 100%;
    max-width: 100%;
}

.styled-table {
    width: 100%;
    min-width: 300px;
    border-collapse: collapse;
    background: transparent;
}

.styled-table th,
.styled-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid hsla(0, 0%, 100%, 0.1);
}

.styled-table th {
    background: rgba(255, 155, 133, 0.2);
    font-weight: 600;
    color: #FF9B85;
}

.styled-table tbody tr:hover {
    background: rgba(255, 255, 255, 0.05);
}

/* FAQ Section */
.faq {
    margin-top: 60px;
}

.faq-item {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    margin-bottom: 20px;
    border: 1px solid hsla(0, 0%, 100%, 0.1);
}

.faq-question {
    padding: 25px;
    cursor: pointer;
    font-weight: 600;
    font-size: 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #FF9B85;
}

.faq-answer {
    padding: 0 25px 25px;
    display: none;
    opacity: 0.9;
    line-height: 1.6;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-item.active .faq-answer a {
    color: #FF9B85;
}

.feature-item a {
    color: #FF9B85;
} 

.faq-question i {
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

/* Content Sections */
.content-section {
    background: rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: 20px;
    margin-bottom: 40px;
    border: 1px solid hsla(0, 0%, 100%, 0.1);
    backdrop-filter: blur(10px);
}

.content-section h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #FF9B85;
}

.content-section h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #FF9B85;
}

.content-section p {
    margin-bottom: 15px;
    opacity: 0.9;
    line-height: 1.6;
}

.content-section ul {
    margin-bottom: 20px;
    padding-left: 20px;
}

.content-section li {
    margin-bottom: 8px;
    opacity: 0.9;
}

.content-section a:not(.btn) {
    color: #FF9B85;
    text-decoration: none;
    font-weight: 600;
}

.content-section a:not(.btn):hover {
    color: #FF1847;
    text-decoration: underline;
}

/* Footer */
.footer {
    background: #15141A;
    padding: 50px 0 30px;
    margin-top: 80px;
    border-top: 1px solid hsla(0, 0%, 100%, 0.1);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 30px;
}

.footer-section h3 {
    font-size: 20px;
    margin-bottom: 20px;
    color: #FF9B85;
}

.footer-section p,
.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    display: block;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #FF9B85;
}

.payment-methods {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.payment-method {
    background: rgba(255, 255, 255, 0.1);
    padding: 10px 15px;
    border-radius: 8px;
    font-size: 12px;
    border: 1px solid hsla(0, 0%, 100%, 0.1);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid hsla(0, 0%, 100%, 0.1);
    color: rgba(255, 255, 255, 0.6);
}

/* Responsive Design - Mobile First */

/* Mobile (up to 767px) */
@media (max-width: 767px) {
    body {
        overflow-x: hidden;
        width: 100%;
        max-width: 100vw;
    }
    
    .container {
        padding: 0 10px;
        max-width: 100%;
    }
    
    .header-content {
        padding: 0 10px;
        flex-wrap: wrap;
    }
    
    .logo {
        max-width: 150px;
        font-size: 20px;
    }
    
    .logo img {
        height: 30px;
        max-width: 120px;
    }
    
    .hero {
        min-height: 100vh;
        width: 100%;
        max-width: 100vw;
    }
    
    .hero-content {
        padding: 0 15px;
        max-width: 100%;
    }
    
    .hero h1 {
        font-size: 28px;
        line-height: 1.2;
        word-wrap: break-word;
    }
    
    .hero p {
        font-size: 16px;
        word-wrap: break-word;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }
    
    .btn {
        width: 100%;
        max-width: 280px;
        word-wrap: break-word;
    }
    
    .section-title {
        font-size: 24px;
        word-wrap: break-word;
        padding: 0 10px;
    }
    
    .games-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0;
    }
    
    .game-card {
        margin: 0;
        max-width: 100%;
    }
    
    .features {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .content-section {
        padding: 20px 15px;
        margin: 0;
        word-wrap: break-word;
    }
    
    .main-content {
        padding: 40px 0;
        width: 100%;
        max-width: 100vw;
    }
    
    .table-container {
        margin: 0 -10px 30px -10px;
        border-radius: 0;
    }
    
    .styled-table {
        font-size: 14px;
    }
    
    .styled-table th,
    .styled-table td {
        padding: 10px 8px;
        white-space: nowrap;
    }
    
    .faq-question {
        padding: 20px 15px;
        font-size: 16px;
        word-wrap: break-word;
    }
    
    .faq-answer {
        padding: 0 15px 20px;
        word-wrap: break-word;
    }
}

.mobile-nav-list a {
    text-align: center;
}

@media (min-width: 550px) {
    .cta-buttons {
        width: auto;
        order: 2;
        margin-top: 0;
        justify-content: start;
    }

    .mobile-toggle {
        order: 3;
    }
}

@media (min-width: 1440px) {
    .nav {
        display: block;
    }

    .mobile-nav-list a {
        text-align: left;
    }
    
    .mobile-toggle {
        display: none;
    }
    
    .cta-buttons {
        gap: 15px;
    }
}

/* Tablet (768px - 1023px) */
@media (min-width: 768px) {
    
    .hero h1 {
        font-size: 42px;
    }
    
    .games-grid {
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    }
}

/* Desktop (1024px and up) */
@media (min-width: 1024px) {
    .container {
        padding: 0 30px;
    }
    
    .hero h1 {
        font-size: 48px;
    }
    
    .hero p {
        font-size: 20px;
    }
    
    .hero-buttons {
        flex-direction: row;
    }
    
    .games-grid {
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    }
    
    .main-content {
        padding: 80px 0;
    }
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.6s ease;
}

.slide-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.6s ease;
}

.slide-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.mb-30 {
    margin-bottom: 30px;
}

.mb-20 {
    margin-bottom: 20px;
}

.mt-30 {
    margin-top: 30px;
}

.gradient-text {
    background: linear-gradient(110deg, #FF9B85 0%, #FF1847 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Pros and Cons Lists */
.pros-cons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.pros, .cons {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid hsla(0, 0%, 100%, 0.1);
}

.pros h3 {
    color: #4CAF50;
    margin-bottom: 20px;
    font-size: 22px;
}

.cons h3 {
    color: #FF5722;
    margin-bottom: 20px;
    font-size: 22px;
}

.pros ul li::before {
    content: "✅ ";
    margin-right: 10px;
}

.cons ul li::before {
    content: "❌ ";
    margin-right: 10px;
}

.pros ul, .cons ul {
    list-style: none;
    padding-left: 0;
}

.pros ul li, .cons ul li {
    margin-bottom: 10px;
    position: relative;
} 

@media (max-width: 640px) {
    .pros-cons {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .pros, .cons {
        padding: 20px;
    }
}

@media (max-width: 550px) {
    .pros-cons .pros {
        border: none;
        background: none;
        padding: 0;
    }

    .mobile-nav {
        top: 120px;
    }
    
    .pros-cons .cons {
        border: none;
        background: none;
        padding: 0;
    }
    
    .pros-cons {
        gap: 30px;
    }
}