:root {
    /* JUNIOR TYCOON BRAND COLORS (Dark Mode) */
    --primary: #10CC4C;
    /* App Green */
    --primary-dim: rgba(16, 204, 76, 0.15);
    --secondary: #7000ff;
    /* App Purple */
    --accent: #ff0055;
    /* App Pink */

    --bg-dark: #121214;
    /* App Background */
    --bg-card: #1C1C1E;
    /* App Card Background */
    --text-main: #ffffff;
    --text-muted: #8E8E93;

    --bg-offwhite: #121214;
    /* Override for consistency */
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    color: var(--text-main);
    background-color: var(--bg-dark);
}

/* Header & Nav */
header {
    background: linear-gradient(135deg, #0a0a0a, #16213E);
    color: white;
    padding: 4rem 2rem;
    text-align: center;
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.lang-toggle {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-weight: bold;
    z-index: 10;
}

.lang-toggle a {
    color: var(--text-muted);
    text-decoration: none;
    margin-left: 10px;
    font-size: 0.9rem;
    padding: 5px 10px;
    border-radius: 20px;
    transition: all 0.2s;
}

.lang-toggle a:hover,
.lang-toggle a.active {
    color: var(--primary);
    background: var(--primary-dim);
}

h1 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    /* Gradient text from Green to Purple */
    background: linear-gradient(to right, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Specific Page Headers */
.page-header h1 {
    -webkit-text-fill-color: initial;
    background: none;
    color: var(--text-main);
    font-size: 2.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 1rem;
    margin-top: 2rem;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 2rem;
}

.badges {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.badges img {
    height: 50px;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.2s;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.badges img:hover {
    transform: scale(1.05);
}

/* Content Containers */
.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem;
}

.text-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    background-color: var(--bg-dark);
}

/* Features Grid */
.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 4rem 0;
}

.feature-card {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

/* Typography */
h2 {
    color: var(--primary);
    margin-top: 2.5rem;
}

h3 {
    color: var(--text-main);
    margin-top: 1.5rem;
}

p,
li {
    color: #cccccc;
}

.header-info {
    color: var(--text-muted);
    font-style: italic;
    margin-bottom: 2rem;
    background: var(--bg-card);
    padding: 1rem;
    border-radius: 12px;
}

/* Links & Buttons */
a {
    color: var(--primary);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
    text-decoration-color: var(--primary);
}

.back-link {
    display: inline-block;
    margin-bottom: 1rem;
    font-weight: bold;
    color: var(--text-muted);
}

.cta-section {
    background: linear-gradient(135deg, var(--bg-card), #000);
    color: white;
    text-align: center;
    padding: 4rem 2rem;
    margin-top: 4rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Footer */
footer {
    background: #000;
    color: var(--text-muted);
    text-align: center;
    padding: 3rem 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

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

footer a:hover {
    color: var(--primary);
}

/* Contact Card */
.contact-card {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: 16px;
    border-left: 5px solid var(--primary);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

hr {
    border: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin: 3rem 0;
}

/* Details/Summary */
details {
    background: var(--bg-card);
    border-radius: 12px;
    padding: 1rem;
    margin-bottom: 1rem;
    cursor: pointer;
}

summary {
    font-weight: bold;
    color: var(--primary);
}