/* FTV Pro Website Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #E50914;
    --bg-color: #000000;
    --surface-color: #1a1a1a;
    --text-color: #ffffff;
    --text-secondary: #cccccc;
    --text-tertiary: #888888;
    --border-color: rgba(255, 255, 255, 0.1);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

/* Header */
header {
    background-color: var(--surface-color);
    border-bottom: 2px solid var(--primary-color);
    padding: 40px 0;
    margin-bottom: 40px;
}

header h1 {
    font-size: 2.5em;
    color: var(--primary-color);
    margin-bottom: 10px;
    font-weight: 700;
}

.tagline {
    color: var(--text-secondary);
    font-size: 1.1em;
}

/* Main Content */
main {
    flex: 1;
    padding: 20px 0 60px;
}

section {
    margin-bottom: 40px;
}

h2 {
    color: var(--text-color);
    font-size: 1.8em;
    margin-bottom: 20px;
    margin-top: 30px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 10px;
}

h3 {
    color: var(--text-secondary);
    font-size: 1.3em;
    margin-top: 25px;
    margin-bottom: 15px;
}

p {
    margin-bottom: 15px;
    color: var(--text-secondary);
    line-height: 1.8;
}

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

li {
    margin-bottom: 10px;
    color: var(--text-secondary);
    line-height: 1.8;
}

strong {
    color: var(--text-color);
    font-weight: 600;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: opacity 0.2s;
}

a:hover {
    opacity: 0.8;
    text-decoration: underline;
}

/* Intro Section */
.intro {
    background: linear-gradient(135deg, rgba(229, 9, 20, 0.1) 0%, rgba(229, 9, 20, 0.05) 100%);
    padding: 30px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    margin-bottom: 40px;
}

.intro p {
    font-size: 1.1em;
    color: var(--text-color);
}

/* Features */
.features ul {
    list-style: none;
    margin-left: 0;
}

.features li {
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
}

.features li:last-child {
    border-bottom: none;
}

/* Important Section */
.important {
    background-color: rgba(229, 9, 20, 0.1);
    border-left: 4px solid var(--primary-color);
    padding: 25px;
    border-radius: 8px;
    margin: 30px 0;
}

.important ul {
    margin-left: 20px;
}

/* Privacy Section */
.privacy {
    background-color: rgba(0, 150, 255, 0.1);
    border-left: 4px solid #0096ff;
    padding: 25px;
    border-radius: 8px;
    margin: 30px 0;
}

/* Links Section */
.links {
    margin-top: 50px;
}

.link-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.link-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 30px 20px;
    background-color: var(--surface-color);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    transition: all 0.3s;
    text-align: center;
    min-height: 150px;
}

.link-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(229, 9, 20, 0.2);
}

.link-icon {
    font-size: 2.5em;
    margin-bottom: 15px;
}

.link-text {
    color: var(--text-color);
    font-weight: 500;
    font-size: 1.1em;
}

/* Last Updated */
.last-updated {
    color: var(--text-tertiary);
    font-size: 0.9em;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-color);
}

/* Footer */
footer {
    background-color: var(--surface-color);
    border-top: 1px solid var(--border-color);
    padding: 30px 0;
    margin-top: 60px;
    text-align: center;
}

footer p {
    margin-bottom: 10px;
    color: var(--text-tertiary);
}

.footer-links {
    margin-top: 15px;
}

.footer-links a {
    color: var(--text-secondary);
    margin: 0 10px;
}

/* Responsive */
@media (max-width: 768px) {
    header h1 {
        font-size: 2em;
    }

    .container {
        padding: 0 15px;
    }

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

    h2 {
        font-size: 1.5em;
    }
}

/* Language Switcher */
#lang-switcher {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
    background: rgba(26, 26, 26, 0.95);
    padding: 8px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    display: flex;
    gap: 5px;
}

.lang-btn {
    background: transparent;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 6px 12px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s;
    font-family: inherit;
}

.lang-btn:hover {
    background: rgba(229, 9, 20, 0.3);
    border-color: rgba(229, 9, 20, 0.5);
}

.lang-btn.active {
    background: #E50914;
    border-color: #E50914;
    color: white;
}

@media (max-width: 768px) {
    #lang-switcher {
        top: 10px;
        right: 10px;
        padding: 8px;
    }
    
    #lang-switcher button {
        padding: 5px 10px;
        font-size: 12px;
    }
}

/* Print Styles */
@media print {
    body {
        background: white;
        color: black;
    }

    header, footer {
        background: white;
        border-color: #ccc;
    }

    a {
        color: #0066cc;
    }
}
