/* 
   PlayGaraj Creator Hub - Press Kit Page 
   Theme: Dark Mode (Charcoal/Amber) - "Corporate/Professional"
*/

@import url('https://fonts.googleapis.com/css2?family=Exo+2:wght@300;400;600;700;800&family=Inter:wght@300;400;500;600&display=swap');

:root {
    --bg-dark: #121212;
    --bg-card: #1E1E1E;
    --primary-color: #FF6F00;
    --primary-hover: #E65100;
    --secondary-color: #455A64;
    --text-white: #FFFFFF;
    --text-gray: #B0BEC5;
    --border-color: #2C2C2C;
    --premium-gold: #FFD700;
    --premium-gradient: linear-gradient(135deg, #FF6F00 0%, #FFD700 100%);

    --font-heading: 'Exo 2', sans-serif;
    --font-body: 'Inter', sans-serif;

    --transition-speed: 0.3s;
    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.3);
    --shadow-glow: 0 0 20px rgba(255, 111, 0, 0.2);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-gray);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-speed);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--text-white);
    margin-bottom: 20px;
}

h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    font-weight: 800;
}

h2 {
    font-size: 2.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header & Navigation */
header {
    background-color: rgba(18, 18, 18, 0.9);
    backdrop-filter: blur(12px);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid var(--border-color);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary-color);
    text-transform: uppercase;
}

.logo span {
    color: var(--text-white);
    font-weight: 300;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-link {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-gray);
    text-transform: uppercase;
    transition: var(--transition-speed);
}

.nav-link:hover {
    color: var(--primary-color);
}

.header-cta {
    display: flex;
    align-items: center;
    gap: 20px;
}

.lang-switch {
    display: flex;
    gap: 10px;
    align-items: center;
}

.lang-btn {
    background: none;
    border: 1px solid var(--border-color);
    color: var(--text-gray);
    padding: 5px 10px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.8rem;
    transition: var(--transition-speed);
}

.lang-btn:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.mobile-only {
    display: none;
}

.menu-toggle {
    display: none;
    font-size: 1.5rem;
    color: var(--text-white);
    cursor: pointer;
}

/* Sections General */
section {
    padding: 100px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 70px;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--primary-color);
    margin: 20px auto 0;
}

/* Hero Section */
.hero {
    padding-top: 180px;
    padding-bottom: 100px;
    text-align: center;
    background: radial-gradient(circle at 50% 30%, rgba(30, 30, 30, 0.5) 0%, rgba(18, 18, 18, 1) 70%);
}

.hero h1 span {
    color: var(--primary-color);
}

.hero p {
    color: var(--text-gray);
    max-width: 800px;
    margin: 0 auto 40px;
}

/* Cards & Grid */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.card {
    background: var(--bg-card);
    padding: 40px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    transition: all var(--transition-speed);
}

.card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

/* PRO Highlights */
.pro-card {
    border: 1px solid rgba(255, 215, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.pro-card::before {
    content: 'PRO';
    position: absolute;
    top: 10px;
    right: -30px;
    background: var(--premium-gradient);
    color: #000;
    padding: 5px 40px;
    transform: rotate(45deg);
    font-weight: 800;
    font-size: 0.8rem;
}

.card h3 i {
    color: var(--primary-color);
    margin-right: 10px;
}

.pro-highlight {
    color: var(--premium-gold);
    font-weight: 700;
}

/* Media Kit (Download Center) */
.media-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 25px;
}

.media-card {
    background: var(--bg-card);
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: var(--transition-speed);
}

.media-thumbnail {
    width: 100%;
    height: 180px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #000;
    padding: 20px;
}

.media-info {
    padding: 20px;
    text-align: center;
}

.media-info h4 {
    font-size: 1rem;
    margin-bottom: 15px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 6px;
    font-weight: 700;
    font-family: var(--font-heading);
    text-transform: uppercase;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-primary {
    background: var(--primary-color);
    color: #000;
    border: none;
}

.btn-primary:hover {
    background: var(--primary-hover);
    color: #fff;
    box-shadow: 0 4px 15px rgba(255, 111, 0, 0.4);
}

.btn-download {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    border: 1px solid var(--border-color);
}

.btn-download:hover {
    background: var(--primary-color);
    color: #000;
    border-color: var(--primary-color);
}

/* Footer */
footer {
    background-color: #0d0d0d;
    padding: 80px 0 30px;
    border-top: 1px solid var(--border-color);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-info {
    max-width: 350px;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.social-icon {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 1.2rem;
}

.social-icon:hover {
    background: var(--primary-color);
    color: #fff;
    transform: translateY(-3px);
}

.disclaimer {
    background: var(--bg-card);
    padding: 25px;
    border-radius: 8px;
    font-size: 0.85rem;
    color: #888;
    border: 1px solid var(--border-color);
    margin-top: 40px;
}

.copyright {
    text-align: center;
    color: #666;
    font-size: 0.9rem;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
}

/* Responsive */
@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    .navbar {
        justify-content: space-between;
        padding: 0 20px;
    }

    .menu-toggle {
        display: block;
        order: 3;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background: rgba(18, 18, 18, 0.95);
        backdrop-filter: blur(15px);
        flex-direction: column;
        align-items: center;
        padding: 40px 20px;
        gap: 25px;
        border-bottom: 2px solid var(--primary-color);
        z-index: 1000;
    }

    .nav-links.active {
        display: flex;
    }

    .mobile-only {
        display: flex;
    }

    .desktop-only {
        display: none;
    }

    .nav-links .header-cta {
        margin-top: 30px;
        padding-top: 30px;
        border-top: 1px solid var(--border-color);
        width: 100%;
        flex-direction: column;
        gap: 20px;
    }

    .nav-links .btn {
        width: 100%;
        text-align: center;
    }

    .hero {
        padding-top: 160px;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
}