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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #f5f5f5;
}

/* Header Styles */
header {
    background: #011530 url('https://www.byteofgeek.com/images/header.png') center center;
    background-size: cover;
    color: white;
    padding: 2rem 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.header-logo {
    max-width: 200px;
    height: auto;
}

.header-text {
    flex: 1;
    text-align: left;
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.tagline {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Social Media Icons */
.social-icons {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.social-icons a {
    color: white;
    font-size: 1.3rem;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    transition: transform 0.3s, opacity 0.3s;
    text-decoration: none;
}

.social-icons a:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

.social-icons a[aria-label="YouTube"] {
    background: linear-gradient(135deg, #c4302b 0%, #e74c3c 100%);
}

.social-icons a[aria-label="Instagram"] {
    background: linear-gradient(135deg, #5851db 0%, #833ab4 100%);
}

.social-icons a[aria-label="X (Twitter)"] {
    background: #000000;
}

.social-icons a[aria-label="X (Twitter)"] svg {
    width: 20px;
    height: 20px;
    fill: white;
}

.social-icons a[aria-label="Bluesky"] {
    background: linear-gradient(135deg, #1185fe 0%, #4d9ef5 100%);
}

.social-icons a[aria-label="Bluesky"] svg {
    width: 28px;
    height: 28px;
}

.social-icons a[aria-label="Facebook"] {
    background: linear-gradient(135deg, #3b5998 0%, #4267B2 100%);
}

/* Navigation Styles */
nav {
    background: #343538;
    padding: 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

nav ul {
    list-style-type: none !important;
    list-style: none !important;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0;
    margin: 0 !important;
    padding: 0 !important;
}

nav ul::before,
nav ul::after {
    content: none !important;
    display: none !important;
}

nav li {
    list-style-type: none !important;
    list-style: none !important;
    display: block;
    margin: 0 !important;
    padding: 0 !important;
}

nav li::before,
nav li::after {
    content: none !important;
    display: none !important;
}

nav a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s;
    padding: 1rem 2rem;
    display: block;
}

nav a:hover {
    background: #062453;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 1rem;
    position: absolute;
    right: 20px;
    z-index: 101;
    width: 50px;
    height: 50px;
}

.mobile-menu-toggle:focus {
    outline: 2px solid #667eea;
    outline-offset: 2px;
}

/* Hamburger icon */
.hamburger {
    display: block;
    width: 25px;
    height: 2px;
    background: white;
    position: relative;
    transition: background 0.3s;
    margin: 0 auto;
}

.hamburger::before,
.hamburger::after {
    content: '';
    display: block;
    width: 25px;
    height: 2px;
    background: white;
    position: absolute;
    left: 0;
    transition: transform 0.3s;
}

.hamburger::before {
    top: -8px;
}

.hamburger::after {
    top: 8px;
}

/* Hamburger animation when active */
.mobile-menu-toggle[aria-expanded="true"] .hamburger {
    background: transparent;
}

.mobile-menu-toggle[aria-expanded="true"] .hamburger::before {
    transform: rotate(45deg);
    top: 0;
}

.mobile-menu-toggle[aria-expanded="true"] .hamburger::after {
    transform: rotate(-45deg);
    top: 0;
}

/* Content Section Styles */
.content-section {
    background: white;
    padding: 3rem 0;
    margin: 2rem 0;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.content-section.support-page {
    background: transparent;
    padding: 3rem 0;
    margin: 2rem 0;
    box-shadow: none;
    border-radius: 0;
}

.content-section.support-page h2 {
    text-align: center;
    font-size: 2rem;
    margin-top: 0;
    margin-bottom: 1rem;
}

.content-section h2 {
    color: #000000;
    margin-bottom: 2rem;
    text-align: center;
    font-size: 2rem;
}

.content-section h3 {
    color: #000000;
    margin: 2rem 0 1rem 0;
    font-size: 1.5rem;
}

/* Hero Section */
.hero {
    background: white;
    padding: 3rem 0;
    margin: 2rem 0;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero h2 {
    color: #000000;
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.hero p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #666;
    line-height: 1.8;
}

.hero .cta-button {
    margin-top: 1rem;
}

/* Buttons */
.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.6);
}

/* Footer Styles */
footer {
    background: #2d3748;
    color: white;
    text-align: center;
    padding: 2rem 0;
    margin-top: 3rem;
}

footer p {
    opacity: 0.8;
}

footer a {
    color: #667eea;
    text-decoration: none;
}

footer a:hover {
    color: #764ba2;
}

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

    .tagline {
        font-size: 1rem;
    }

    .header-content {
        flex-direction: column;
        text-align: center;
    }

    .social-icons {
        margin-top: 1rem;
    }

    .hero h2 {
        font-size: 1.5rem;
    }
    
    /* Mobile Menu Styles */
    .nav-container {
        justify-content: space-between;
        padding: 0 20px;
    }
    
    .mobile-menu-toggle {
        display: flex !important;
        align-items: center;
        justify-content: center;
        position: relative !important;
        right: auto !important;
    }
    
    nav ul {
        position: fixed;
        top: 0;
        left: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: #343538;
        flex-direction: column;
        gap: 0;
        padding-top: 4rem !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
        margin: 0 !important;
        transition: left 0.3s ease;
        overflow-y: auto;
        box-shadow: 2px 0 10px rgba(0,0,0,0.3);
        z-index: 100;
        list-style-type: none !important;
        list-style: none !important;
    }
    
    nav ul.active {
        left: 0;
    }
    
    nav li {
        width: 100%;
        border-bottom: 1px solid rgba(255,255,255,0.1);
        list-style-type: none !important;
        list-style: none !important;
        display: block;
        margin: 0 !important;
        padding: 0 !important;
    }
    
    nav li::before,
    nav li::after {
        content: none !important;
        display: none !important;
    }
    
    nav a {
        padding: 1rem 1.5rem;
        text-align: left;
        width: 100%;
    }
    
    nav a:hover {
        background: #062453;
        padding-left: 2rem;
    }
}

@media (min-width: 769px) {
    .mobile-menu-toggle {
        display: none !important;
    }
    
    .nav-container {
        padding: 0 20px;
    }
}