/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.5;
    color: #333333;
    background-color: #EEE2B5;
}

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

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(238, 226, 181, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 16px 0;
    transition: background-color 0.3s ease;
}

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

.logo h2 {
    color: #CA7373;
    font-size: 28px;
    font-weight: bold;
    margin: 0;
}

.nav {
    display: flex;
    gap: 32px;
}

.nav-link {
    text-decoration: none;
    color: #333333;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #CA7373;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #CA7373;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.search-container {
    display: flex;
    align-items: center;
    background-color: white;
    border-radius: 24px;
    padding: 8px 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.search-input {
    border: none;
    outline: none;
    padding: 8px;
    background: transparent;
    width: 200px;
}

.search-btn {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 16px;
    color: #D7B26D;
}

/* Hero Section */
.hero {
    margin-top: 80px;
    min-height: 90vh;
    background: linear-gradient(135deg, #EEE2B5 0%, #D7B26D 100%);
    background-image: url('./DJ-Fox.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(238, 226, 181, 0.8);
}

.hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    min-height: 90vh;
    padding: 80px 0;
}

.hero-left h1 {
    font-size: 50px;
    font-weight: bold;
    color: #333333;
    margin-bottom: 24px;
    line-height: 1.2;
}

.hero-left p {
    font-size: 18px;
    color: #555555;
    margin-bottom: 32px;
    line-height: 1.5;
}

.cta-button {
    background: linear-gradient(135deg, #CA7373, #D7B26D);
    color: white;
    border: none;
    padding: 16px 32px;
    border-radius: 32px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(202, 115, 115, 0.3);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(202, 115, 115, 0.4);
}

.hero-right {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image {
    width: 400px;
    height: 400px;
    background-image: url('./DJ_Cat_.webp');
    background-size: cover;
    background-position: center;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.hero-image:hover {
    transform: scale(1.05);
}

/* About Section */
.about {
    padding: 80px 0;
    background-color: white;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.about-left h2 {
    font-size: 36px;
    color: #CA7373;
    margin-bottom: 24px;
    line-height: 1.2;
}

.about-left p {
    font-size: 16px;
    color: #555555;
    margin-bottom: 32px;
    line-height: 1.5;
}

.secondary-button {
    background: transparent;
    color: #CA7373;
    border: 2px solid #CA7373;
    padding: 12px 24px;
    border-radius: 24px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.secondary-button:hover {
    background-color: #CA7373;
    color: white;
    transform: translateY(-2px);
}

.about-images {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.about-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.about-img:hover {
    transform: scale(1.02);
}

/* Games Section */
.games {
    padding: 80px 0;
    background: linear-gradient(135deg, #EEE2B5 0%, #D7B26D 50%, #EEE2B5 100%);
}

.section-title {
    text-align: center;
    font-size: 36px;
    color: #CA7373;
    margin-bottom: 48px;
    line-height: 1.2;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    max-width: 1000px;
    margin: 0 auto;
}

.game-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.game-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.15);
}

.game-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.game-card h3 {
    padding: 16px 20px 8px;
    font-size: 18px;
    color: #333333;
    line-height: 1.2;
}

.play-button {
    width: 100%;
    background: linear-gradient(135deg, #CA7373, #D7B26D);
    color: white;
    border: none;
    padding: 16px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.play-button:hover {
    background: linear-gradient(135deg, #D7B26D, #CA7373);
    transform: translateY(-2px);
}

/* Disclaimer Section */
.disclaimer {
    padding: 48px 0;
    background-image: 
        radial-gradient(circle at 20% 50%, #D7B26D 20%, transparent 20%),
        radial-gradient(circle at 40% 20%, #CA7373 15%, transparent 15%),
        radial-gradient(circle at 80% 80%, #EEE2B5 25%, transparent 25%),
        radial-gradient(circle at 60% 60%, #D7B26D 20%, transparent 20%);
    background-size: 50px 50px, 40px 40px, 60px 60px, 45px 45px;
    background-position: 0 0, 20px 20px, 40px 40px, 10px 30px;
    background-color: #EEE2B5;
}

.disclaimer-content {
    background: rgba(255, 255, 255, 0.9);
    padding: 32px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.disclaimer-content p {
    font-size: 16px;
    color: #555555;
    line-height: 1.5;
    max-width: 800px;
    margin: 0 auto;
}

/* Footer */
.footer {
    background-color: #333333;
    color: white;
    padding: 40px 0;
    text-align: center;
}

.footer-content p {
    margin-bottom: 8px;
    line-height: 1.5;
}

.copyright {
    font-weight: 600;
}

.footer-links {
    margin-top: 16px;
    display: flex;
    justify-content: center;
    gap: 24px;
}

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

.footer-links a:hover {
    color: #CA7373;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 16px;
    }
    
    .nav {
        gap: 16px;
    }
    
    .search-input {
        width: 150px;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: center;
    }
    
    .hero-left h1 {
        font-size: 36px;
    }
    
    .hero-image {
        width: 300px;
        height: 300px;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: center;
    }
    
    .games-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 12px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 12px;
    }
    
    .hero-left h1 {
        font-size: 28px;
    }
    
    .hero-left p {
        font-size: 16px;
    }
    
    .about-left h2 {
        font-size: 28px;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .disclaimer-content {
        padding: 24px;
    }
}