/* Base Styles */
:root {
    --primary-bg: #1E2124;
    --secondary-bg: #121315;
    --primary-accent: #C41E3A;
    --secondary-accent: #267F3B;
    --text-color: #FFFFFF;
    --secondary-text: #B8B9BA;
    --border-color: #343638;
}

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

body {
    font-family: 'Open Sans', sans-serif;
    background-color: var(--primary-bg);
    color: var(--text-color);
    line-height: 1.6;
    min-height: 100vh;
    position: relative;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 1.5rem;
    text-align: center;
}

h2 {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--primary-accent);
    margin-bottom: 1rem;
    margin-top: 2rem;
}

p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Video Container */
.video-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto 3rem auto;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.video-container video {
    width: 100%;
    height: auto;
    display: block;
}

/* Main Content */
.content {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem;
    text-align: center;
}

/* Links */
a {
    color: var(--primary-accent);
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover {
    color: #e63946;
    text-decoration: underline;
}

/* Download Links */
.download-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.download-btn {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background-color: var(--secondary-bg);
    border: 2px solid var(--border-color);
    border-radius: 8px;
    padding: 1rem 1.5rem;
    color: var(--text-color);
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 600;
    font-size: 1.1rem;
}

.download-btn:hover {
    background-color: var(--primary-accent);
    border-color: var(--primary-accent);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(196, 30, 58, 0.3);
    color: white;
    text-decoration: none;
}

.platform-icon {
    width: 32px;
    height: 32px;
}

/* Final Note */
.final-note {
    font-style: italic;
    color: var(--secondary-text);
    margin-top: 3rem;
    font-size: 1rem;
}

/* Footer Logo - Exact styling from poker site */
.footer-logo {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 5;
}

.footer-logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--secondary-text);
    font-size: 0.9rem;
    transition: all 0.2s ease;
}

.footer-logo a:hover {
    color: var(--text-color);
}

.ninja-logo {
    height: 30px;
    margin-right: 10px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .content {
        padding: 1.5rem;
    }
    
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    .download-links {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .download-btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .footer-logo {
        position: static;
        margin-top: 3rem;
        text-align: center;
        padding-bottom: 1rem;
    }
    
    .footer-logo a {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2rem;
    }
    
    .content {
        padding: 1rem;
    }
    
    p {
        font-size: 1rem;
    }
    
    .video-container {
        margin-bottom: 2rem;
    }
}
