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

body {
    font-family: 'Poppins', sans-serif;
    color: #333;
    background-color: #fafafa;
    line-height: 1.6;
}

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

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* Header Styles */
header {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 5px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 28px;
    font-weight: 700;
    color: #333;
}

.logo span {
    color: #4c5fd7;
}

nav ul {
    display: flex;
}

nav ul li {
    margin-left: 30px;
}

nav ul li a {
    font-weight: 500;
    font-size: 16px;
    transition: color 0.3s;
}

nav ul li a:hover, nav ul li a.active {
    color: #4c5fd7;
}

/* Preview Section */
.preview-section {
    padding: 5px 0;
    background-color: white;
    text-align: center;
}

.preview-image {
    max-width: 90%;
    max-height: 500px;
    height: auto;
    margin: 0 auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: block;
}

/* Categories Section */
.categories {
    padding: 10px 0;
}

.section-title {
    text-align: center;
    font-size: 36px;
    margin-bottom: 18px;
    color: #333;
    position: relative;
}

.section-title:after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background-color: #4c5fd7;
    margin: 10px auto 0;
    border-radius: 2px;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.category-card {
    background-color: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.category-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.category-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #333;
}

.category-card p {
    color: #666;
    margin-bottom: 20px;
    flex-grow: 1;
}

.play-button {
    display: inline-block;
    background-color: #4c5fd7;
    color: white;
    padding: 10px 25px;
    border-radius: 6px;
    font-weight: 500;
    transition: background-color 0.3s;
}

.play-button:hover {
    background-color: #3d4db3;
}

/* Features Section */
.features {
    padding: 80px 0;
    background-color: #f5f7ff;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
}

.feature-card {
    background-color: white;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.feature-icon {
    font-size: 36px;
    margin-bottom: 15px;
}

.feature-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #333;
}

.feature-card p {
    color: #666;
}

/* Footer */
footer {
    background-color: #333;
    color: white;
    padding: 25px 0;
    text-align: center;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content h2 {
        font-size: 36px;
    }
    
    .category-grid, .features-grid {
        grid-template-columns: 1fr;
    }
    
    .category-card {
        max-width: 400px;
        margin: 0 auto;
    }
    
    nav ul li {
        margin-left: 15px;
    }
}

@media (max-width: 480px) {
    header .container {
        flex-direction: column;
    }
    
    nav ul {
        margin-top: 15px;
    }
    
    .hero {
        padding: 50px 0;
    }
    
    .hero-content h2 {
        font-size: 28px;
    }
    
    .section-title {
        font-size: 28px;
    }
}

/* Coming Soon Styles */
.play-button.coming-soon {
    background-color: #aaa;
    cursor: default;
}

.play-button.coming-soon:hover {
    background-color: #999;
}
