/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: white;
    background-color: #00352f;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    margin-bottom: 1rem;
    color: white;
    font-weight: 700;
}

h1 {
    font-size: 2.5rem;
    line-height: 1.2;
}

h2 {
    font-size: 2rem;
    line-height: 1.3;
}

h3 {
    font-size: 1.5rem;
    line-height: 1.4;
}

p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: white;
}

a {
    color: #ffab49;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #ffe600;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    min-height: 44px;
    line-height: 1.2;
}

.btn-primary {
    background: linear-gradient(180deg,#ffe600,#ffb800);
    color: #b64100;
    border: 1px solid rgba(255,242,166,.5);
    box-shadow: inset 0 2px 0 1px #fff2a6,0 2px 0 0 #b64100;
    font-weight: 700;
    font-size: 16px;
    text-shadow: 0 2px 0 rgba(159,52,0,.2);
}

.btn-primary:hover {
    color: #b64100;
    transform: translateY(-2px);
    box-shadow: inset 0 2px 0 1px #fff2a6,0 2px 0 0 #b64100, 0 8px 30px rgba(255, 244, 86, 0.15);
}

.btn-secondary {
    background: linear-gradient(180deg, #0f727c, #004e56);
    color: #ffab49;
    box-shadow: 0 2px 0 0 #003941;
    font-size: 16px;
    font-weight: 700;
    border: 1px solid rgba(17,134,125,.5);
    text-shadow: 0 2px 0 rgba(17,0,0,.3);
}

.btn-secondary:hover {
    color: #ffab49;
    transform: translateY(-2px);
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.1rem;
    min-height: 56px;
}

/* Header */
.header {
    background: #00352f;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    border-bottom: 2px solid #075a51;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    height: 30px;
}

.logo img {
    height: 100%;
    width: auto;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-list a {
    color: white;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.nav-list a:hover,
.nav-list a.active {
    background-color: rgba(255, 184, 0, .2);
    color: #ffb800;
}

.header-buttons {
    display: flex;
    gap: 1rem;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: white;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* Main Content */
.main {
    min-height: calc(100vh - 200px);
    background-color: #00352f;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #00352f 0%, #0f727c 100%);
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.hero h1 {
    color: white;
    margin-bottom: 2rem;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Sections */
.section {
    padding: 4rem 0;
    background-color: #00352f;
}

.section h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: white;
}

.section p {
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 2rem;
    color: white;
}

/* Game Cards */
.game-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.game-card {
    background: #0f727c;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

header .container {
    max-width: unset;
}

.game-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.4);
}

.game-card img {
    width: 100%;
}

.game-card-content {
    padding: 1.5rem;
}

.game-card h3 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.game-card p {
    color: #e0e0e0;
    text-align: left;
    margin-bottom: 0;
    font-size: 1rem;
}

/* Features Table */
.features-table {
    max-width: 800px;
    margin: 3rem auto;
    border-radius: 12px;
    overflow: hidden;
    background: linear-gradient(180deg, #0f727c, #004e56);
}

/* Make tables scrollable on mobile */
.table-container {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: 12px;
    margin: 3rem auto;
    max-width: 800px;
}

.table-container::-webkit-scrollbar {
    height: 8px;
}

.table-container::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}

.table-container::-webkit-scrollbar-thumb {
    background: #ffab49;
    border-radius: 4px;
}

.table-container::-webkit-scrollbar-thumb:hover {
    background: #ffe600;
}

.feature-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.feature-row.three-columns {
    grid-template-columns: 1fr 1fr 1fr;
}

.feature-header {
    background: linear-gradient(180deg, #0f727c, #004e56);
    color: white;
    border-bottom: 1px solid #fff;
    padding: 1rem;
    font-weight: 700;
    text-align: center;
}

.feature-item {
    padding: 1rem;
    border-bottom: 1px solid #fff;
    background: linear-gradient(180deg, #0f727c, #004e56);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

/* CTA Buttons */
.cta-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 3rem;
}

/* Pros and Cons */
.pros-cons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 900px;
    margin: 3rem auto;
}

.pros, .cons {
    background: linear-gradient(180deg, #0f727c, #004e56);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.pros h3 {
    color: #28a745;
    margin-bottom: 1rem;
}

.cons h3 {
    color: #dc3545;
    margin-bottom: 1rem;
}

.pros ul, .cons ul {
    list-style: none;
    padding-left: 0;
}

.pros li, .cons li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #0f727c;
    position: relative;
    padding-left: 1.5rem;
    color: white;
}

.pros li:before {
    content: "✓";
    color: #28a745;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.cons li:before {
    content: "✗";
    color: #dc3545;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.pros li:last-child, .cons li:last-child {
    border-bottom: none;
}

/* FAQ */
.faq {
    max-width: 800px;
    margin: 3rem auto;
}

.faq-item {
    background-color: #0f727c;
    margin-bottom: 1.5rem;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.faq-item h3 {
    color: #ffe600;
    margin-bottom: 1rem;
}

.faq-item p {
    text-align: left;
    margin-bottom: 0;
    color: white;
}

/* Footer */
.footer {
    background: #0f727c;
    color: white;
    padding: 2rem 0;
    text-align: center;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.footer-section p {
    margin-bottom: 0;
    text-align: center;
    color: white;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .container {
        padding: 0 15px;
    }
    
    h1 {
        font-size: 2.2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .nav-list {
        gap: 1.5rem;
    }
    
    .game-cards {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1.5rem;
    }
}

@media (max-width: 1440px) {
    .header-content {
        flex-wrap: wrap;
    }
    
    .nav {
        order: 3;
        width: 100%;
        margin-top: 1rem;
        display: none;
    }
    
    .nav.active {
        display: block;
    }
    
    .nav-list {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
    
    .nav-list a {
        display: block;
        padding: 1rem;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
}

@media (max-width: 768px) {
    
    h1 {
        font-size: 1.8rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    .hero {
        padding: 2rem 0;
    }
    
    .section {
        padding: 2rem 0;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .pros-cons {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .features-table {
        margin: 2rem auto;
        min-width: 600px; /* Ensure minimum width for scrolling */
    }
    
    .feature-row {
        min-width: 600px; /* Ensure minimum width for scrolling */
    }
    
    .feature-row.three-columns {
        min-width: 600px; /* Ensure minimum width for scrolling */
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .game-cards {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }

    .logo {
        height: 20px;
    }

    .header-buttons {
        gap: 10px;
    }
    
    
    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .btn-large {
        padding: 14px 28px;
        font-size: 1rem;
    }
    
    .hero-buttons {
        gap: 1rem;
    }
    
    .cta-buttons {
        gap: 1rem;
    }
}

@media (max-width: 375px) {
    .header-buttons {
        width: 100%;
        justify-content: center;
        order: 3;
        margin-top: 15px;
    }

    .header-content {
        gap: 0;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.section {
    animation: fadeInUp 0.6s ease-out;
}

/* Hover Effects */
.game-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.4);
}

.faq-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease;
}

/* Focus States for Accessibility */
.btn:focus,
.nav-list a:focus,
.mobile-menu-toggle:focus {
    outline: 3px solid #ffe600;
    outline-offset: 2px;
}

/* Loading States */
.btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Print Styles */
@media print {
    .header,
    .footer,
    .btn,
    .cta-buttons {
        display: none;
    }
    
    .hero {
        background: white !important;
        color: black !important;
    }
    
    .section-alt {
        background: white !important;
    }
} 