/* Cat 2048 Landing Page Styles - Black Cat Theme */

* {
    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: #E5E5E7;
    background-color: #1C1C1E;
}

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

/* Header */
.header {
    background: #2C2C2E;
    border-bottom: 1px solid #3A3A3C;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo-section {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo {
    width: 40px;
    height: 40px;
}

.header h1 {
    color: #D4AF37;
    font-size: 1.5rem;
    font-weight: bold;
}

.nav {
    display: flex;
    gap: 2rem;
}

.nav a {
    color: #E5E5E7;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav a:hover {
    color: #D4AF37;
}

/* Hero Section */
.hero {
    padding: 4rem 0;
    background: linear-gradient(135deg, #1C1C1E 0%, #2C2C2E 100%);
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-text h2 {
    font-size: 3rem;
    color: #D4AF37;
    margin-bottom: 1rem;
    font-weight: bold;
}

.hero-text p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #E5E5E7;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
}

.btn {
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background-color: #D4AF37;
    color: #1C1C1E;
}

.btn-primary:hover {
    background-color: #B8941F;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: #D4AF37;
    border: 2px solid #D4AF37;
}

.btn-secondary:hover {
    background-color: #D4AF37;
    color: #1C1C1E;
}

.hero-image {
    text-align: center;
}

.game-preview {
    width: 300px;
    height: 300px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Features Section */
.features {
    padding: 4rem 0;
    background-color: #2C2C2E;
}

.features h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #D4AF37;
    margin-bottom: 3rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: #3A3A3C;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    color: #D4AF37;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

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

/* Screenshots Section */
.screenshots {
    padding: 4rem 0;
    background-color: #1C1C1E;
}

.screenshots h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #D4AF37;
    margin-bottom: 3rem;
}

.screenshot-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.screenshot-item {
    text-align: center;
}

.screenshot-item img {
    width: 200px;
    height: 200px;
    border-radius: 12px;
    margin-bottom: 1rem;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.screenshot-item p {
    color: #E5E5E7;
    font-weight: 500;
}

/* Download Section */
.download {
    padding: 4rem 0;
    background: linear-gradient(135deg, #2C2C2E 0%, #3A3A3C 100%);
    text-align: center;
}

.download h2 {
    font-size: 2.5rem;
    color: #D4AF37;
    margin-bottom: 1rem;
}

.download p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #E5E5E7;
}

.download-buttons {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.download-btn img {
    height: 60px;
    transition: transform 0.3s ease;
}

.download-btn:hover img {
    transform: scale(1.05);
}

.coming-soon {
    color: #D4AF37;
    font-weight: bold;
    font-size: 1.1rem;
}

/* About Section */
.about {
    padding: 4rem 0;
    background-color: #1C1C1E;
}

.about h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #D4AF37;
    margin-bottom: 3rem;
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-text p {
    margin-bottom: 1.5rem;
    color: #E5E5E7;
    font-size: 1.1rem;
}

.about-stats {
    display: grid;
    gap: 2rem;
}

.stat {
    text-align: center;
    background: #2C2C2E;
    padding: 1.5rem;
    border-radius: 12px;
}

.stat h3 {
    font-size: 2.5rem;
    color: #D4AF37;
    margin-bottom: 0.5rem;
}

.stat p {
    color: #E5E5E7;
}

/* Contact Section */
.contact {
    padding: 4rem 0;
    background-color: #2C2C2E;
}

.contact h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #D4AF37;
    margin-bottom: 3rem;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-info h3,
.contact-form h3 {
    color: #D4AF37;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.contact-item {
    margin-bottom: 1.5rem;
}

.contact-label {
    color: #D4AF37;
    font-weight: bold;
    display: inline-block;
    width: 80px;
}

.contact-item a {
    color: #E5E5E7;
    text-decoration: none;
}

.contact-item a:hover {
    color: #D4AF37;
}

.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-form input,
.contact-form textarea {
    padding: 12px;
    border: 2px solid #3A3A3C;
    border-radius: 8px;
    background-color: #1C1C1E;
    color: #E5E5E7;
    font-size: 1rem;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #D4AF37;
}

.contact-form button {
    align-self: flex-start;
}

/* Footer */
.footer {
    background-color: #1C1C1E;
    border-top: 1px solid #3A3A3C;
    padding: 2rem 0;
}

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

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

.footer-logo img {
    width: 32px;
    height: 32px;
}

.footer-logo p {
    color: #8E8E93;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

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

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

/* Responsive Design */
@media (max-width: 768px) {
    .header .container {
        flex-direction: column;
        gap: 1rem;
    }
    
    .nav {
        gap: 1rem;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-text h2 {
        font-size: 2rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .download-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}