/* Global Styles and Layout */

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

body {
    font-family: 'Arial', sans-serif;
    background: #000;
    color: #fff;
    overflow-x: hidden;
}

/* Header Styles */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 2rem;
    border-bottom: 2px solid #333;
}

.header-content {
    max-width: 1140px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: nowrap;
    gap: 1rem;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.5rem;
    color: #000;
    border: 3px solid #FF1493;
}

.site-title {
	font-family: "All Round Gothic", sans-serif;
    font-size: 1.5rem;
    font-weight: bold;
    background: linear-gradient(135deg, #FFD700, #FF1493, #00CED1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    cursor: default;
}

nav ul {
	font-family: "All Round Gothic", sans-serif;
	font-size: 1.5rem;
    display: flex;
    list-style: none;
    gap: 2rem;
}

nav a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    cursor: pointer;
}

nav a:hover {
    background: linear-gradient(135deg, #FFD700, #FF1493);
    color: #000;
}

/* Body Content */
main {
    min-height: 50vh;
}

/* Content Sections */
.content-section {
    padding: 4rem 2rem;
    min-height: 60vh;
}

.section-1 {
    background: #F5F5F0;
}

.section-1 .content-area {
    max-width: 1200px;
    margin: 0 auto;
    background: #fff;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.section-1 h2 {
    color: #333;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #FFD700, #FF1493);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-1 p {
    color: #555;
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.section-2 {
    background: #FFD700;
}

.section-2 .content-area {
    max-width: 1200px;
    margin: 0 auto;
}

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

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.video-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    background: #000;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-label {
    text-align: center;
    margin-top: 1rem;
    font-weight: bold;
    color: #000;
    font-size: 1.2rem;
}

.section-3 {
    background: #808080;
}

.section-3 .content-area {
    max-width: 1200px;
    margin: 0 auto;
}

.section-3 h2 {
    color: #fff;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

.section-3 p {
    color: #fff;
    font-size: 1.2rem;
    line-height: 1.8;
    text-align: center;
}

.section-4 {
    background: #fff;
}

.section-4 .content-area {
    max-width: 1200px;
    margin: 0 auto;
}

.section-4 h2 {
    color: #333;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
    background: linear-gradient(135deg, #FFD700, #FF1493, #00CED1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-4 p {
    color: #555;
    font-size: 1.2rem;
    line-height: 1.8;
    text-align: center;
}

/* Footer */
footer {
    background: #1a1a1a;
    padding: 3rem 2rem 2rem;
    margin-top: 4rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.footer-column h3 {
    color: #FFD700;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 0.5rem;
}

.footer-column a {
    color: #aaa;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: #FF1493;
}

.footer-bottom {
    max-width: 1400px;
    margin: 2rem auto 0;
    padding-top: 2rem;
    border-top: 1px solid #333;
    text-align: center;
    color: #666;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    background: none;
    border: 2px solid #FFD700;
    color: #FFD700;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

/* Responsive */
@media (max-width: 768px) {
    header {
        padding: 0.75rem 1rem;
    }

    .header-content {
        flex-wrap: nowrap;
        gap: 0.5rem;
    }

    .menu-toggle {
        display: block;
        flex-shrink: 0;
    }

    nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        width: 100%;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        background: rgba(0, 0, 0, 0.95);
        border-bottom: 2px solid #333;
    }

    nav.active {
        max-height: 300px;
    }

    nav ul {
        flex-direction: column;
        gap: 0.5rem;
        padding-top: 1rem;
        padding-left: 1rem;
        padding-bottom: 2rem;
    }

    nav ul li {
        margin-bottom: 0.5rem;
    }

    nav a {
        display: block;
        padding: 0.75rem 1rem;
        line-height: 1.5;
        margin-right: 1rem;
    }

    .logo {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .site-title {
        font-size: 1.25rem;
    }

    .logo-section {
        gap: 0.5rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }
}
