/*
Theme Name: Squid Game Theme
Author: Your Name
Description: A dark Squid Game-inspired theme with black, grey, and pink accents.
Version: 1.0
*/

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #000000; /* Black base */
    color: #999999; /* Grey text */
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    /* Custom Squid Game background with pink shapes */
    background-image: 
        /* Pink Circle */
        radial-gradient(circle, #e60065 10%, transparent 11%),
        /* Pink Triangle (simplified with borders) */
        linear-gradient(45deg, transparent 50%, #e60065 50%, #e60065 60%, transparent 60%),
        /* Pink Square */
        linear-gradient(to right, #e60065 20%, transparent 21%);
    background-size: 50px 50px, 100px 100px, 80px 80px; /* Adjust sizes for pattern */
    background-position: 0 0, 20px 20px, 40px 40px; /* Offset for overlap */
    background-repeat: repeat; /* Repeating pattern */
}

/* Alternative SVG-based background for precise shapes */
body.alternative-bg {
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><circle cx="20" cy="20" r="10" fill="%23e60065"/><polygon points="50,10 40,30 60,30" fill="%23e60065"/><rect x="70" y="70" width="20" height="20" fill="%23e60065"/></svg>');
    background-repeat: repeat;
}

/* Header and Navigation */
.header {
    position: relative;
    width: 100%;
    padding: 20px 0;
    background: rgba(0, 0, 0, 0.8);
}

.nav-bar .container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 50px;
}

.navigation {
    list-style: none;
    display: flex;
    gap: 20px;
}

.navigation li a {
    color: #ffffff;
    text-decoration: none;
    font-size: 18px;
    transition: color 0.3s;
}

.navigation li a:hover {
    color: #e60065; /* Pink accent */
}

.hamburger, .close {
    display: none;
    color: #ffffff;
    font-size: 24px;
    cursor: pointer;
}

/* Hero Area */
.hero-area {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 50px 0;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-text h1 {
    color: #ffffff;
    font-size: 48px;
    margin-bottom: 20px;
}

.hero-text .button {
    background-color: #e60065;
    color: #ffffff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 18px;
}

.hero-img img {
    max-width: 100%;
    height: auto;
}

/* Video Wrapper */
.video-wrapper {
    position: relative;
    max-width: 800px;
    margin: 20px auto;
}

.video {
    width: 100%;
    height: auto;
}

.video-control, .close-video {
    position: absolute;
    top: 10px;
    right: 10px;
    color: #ffffff;
    font-size: 24px;
    cursor: pointer;
}

/* About Section */
#about .main-about {
    display: flex;
    gap: 20px;
    max-width: 1200px;
    margin: 50px auto;
}

.about-img img {
    max-width: 100%;
    height: auto;
}

.about-text h2 {
    color: #ffffff;
    font-size: 36px;
    margin-bottom: 10px;
}

.about-text h4 {
    color: #e60065;
    font-size: 24px;
}

.about-text p {
    color: #999999;
    margin-bottom: 15px;
}

/* Actor Section */
#actor .container {
    max-width: 1200px;
    margin: 50px auto;
}

.title h2 {
    color: #ffffff;
    font-size: 36px;
    text-align: center;
}

.title p {
    color: #999999;
    text-align: center;
    margin-bottom: 20px;
}

.all-actor {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.actor-box img {
    width: 100%;
    height: auto;
}

.actor-text h4 {
    color: #ffffff;
    font-size: 20px;
}

.actor-text span, .actor-text p {
    color: #999999;
}

/* Popular Area */
.popular-area .container {
    max-width: 1200px;
    margin: 50px auto;
}

.popular-bar {
    display: flex;
    gap: 20px;
}

.popular-img img {
    max-width: 100%;
    height: auto;
}

.popular-text h4 {
    color: #e60065;
    font-size: 24px;
}

/* Review Section */
.review .container {
    max-width: 1200px;
    margin: 50px auto;
}

.review-heading h2 {
    color: #ffffff;
    font-size: 36px;
    text-align: center;
}

.review-heading p {
    color: #999999;
    text-align: center;
}

.swiper-slide img {
    width: 100%;
    height: auto;
}

.review-text h4 {
    color: #ffffff;
}

.review-button .prev-btn, .review-button .next-btn {
    color: #e60065;
    font-size: 24px;
    cursor: pointer;
}

/* Contact Area */
.contact-area .container {
    max-width: 1200px;
    margin: 50px auto;
    text-align: center;
}

.contact-box h2 {
    color: #ffffff;
    font-size: 36px;
    margin-bottom: 20px;
}

.contact-box input {
    padding: 10px;
    width: 100%;
    max-width: 400px;
    margin-bottom: 20px;
    border: 1px solid #e60065;
    background: #222222;
    color: #ffffff;
}

.contact-box .button {
    background-color: #e60065;
    color: #ffffff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
}

/* Footer */
.footer-area {
    background: #111111;
    padding: 50px 0;
}

.main-footer {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-logo img {
    height: 50px;
}

.footer-menu {
    list-style: none;
    display: flex;
    gap: 20px;
}

.footer-menu li a {
    color: #ffffff;
    text-decoration: none;
}

.footer-icons {
    list-style: none;
    display: flex;
    gap: 15px;
}

.footer-icons li i {
    color: #e60065;
    font-size: 24px;
}

.copy-right {
    text-align: center;
    padding: 20px 0;
    color: #999999;
}

/* Responsive Design */
@media (max-width: 768px) {
    .navigation {
        display: none;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        background: #000000;
        flex-direction: column;
        padding: 20px;
    }

    .navigation.active {
        display: flex;
    }

    .hamburger {
        display: block;
    }

    .close {
        display: block;
    }

    .hero-area, .main-about, .popular-bar {
        flex-direction: column;
        text-align: center;
    }
}