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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', sans-serif;
    line-height: 1.6;
    color: #2a2a2a;
    background-color: #f9f9f6;
}

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

.centered-content {
    text-align: center;
}

.centered-content h2 {
    text-align: center;
}

.centered-content .about-grid,
.centered-content .b2b-content {
    text-align: left;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p {
    margin-bottom: 1rem;
    color: #4a4a4a;
}

/* Header */
.header {
    background: linear-gradient(135deg, #f5f5f0 0%, #ebe8e0 100%);
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(42, 42, 42, 0.08);
}

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

.logo {
    flex-shrink: 0;
}

.brand-name {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2a2a2a;
    letter-spacing: -0.02em;
}

/* Buttons */
.btn-primary, .btn-secondary {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
    color: #f5f5f0;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
}

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

.btn-secondary:hover {
    background: #2a2a2a;
    color: #f5f5f0;
}

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

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    max-width: 1200px;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #2a2a2a;
}

.hero-content p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    color: #4a4a4a;
}

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

.hero-image img,
.about-image img,
.b2b-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(42, 42, 42, 0.1);
}

.game-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 12px 12px 0 0;
}

.placeholder-image {
    background: linear-gradient(135deg, #e8e5dd 0%, #d4d1c9 100%);
    border-radius: 12px;
    padding: 3rem;
    text-align: center;
    color: #6a6a6a;
    font-weight: 500;
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* About Section */
.about {
    padding: 4rem 0;
    background: #ffffff;
}

.about h2 {
    text-align: center;
    margin-bottom: 3rem;
}

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

.about-text p {
    font-size: 1.125rem;
    line-height: 1.7;
}

/* Features Section */
.features {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f7f6f3 0%, #f1f0ec 100%);
}

.features h2 {
    text-align: center;
    margin-bottom: 3rem;
}

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

.feature-card {
    background: #ffffff;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(42, 42, 42, 0.08);
}

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

/* Games Showcase */
.games-showcase {
    padding: 4rem 0;
    background: #ffffff;
}

.games-showcase h2 {
    text-align: center;
    margin-bottom: 3rem;
}

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

.game-card {
    background: #f9f9f6;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(42, 42, 42, 0.08);
}

.game-card h3, .game-card p {
    padding: 0 1.5rem;
}

.game-card p {
    padding-bottom: 1.5rem;
}

/* Products Section */
.products {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f5f5f0 0%, #ebe8e0 100%);
}

.products h2 {
    text-align: center;
    margin-bottom: 3rem;
}

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

.product-card {
    background: #ffffff;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(42, 42, 42, 0.08);
    position: relative;
}

.product-card.featured {
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
    color: #f5f5f0;
}

.product-card.featured h3,
.product-card.featured .price,
.product-card.featured li {
    color: #f5f5f0;
}

.price {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #2a2a2a;
}

.price span {
    font-size: 1rem;
    font-weight: 400;
    opacity: 0.7;
}

.product-card ul {
    list-style: none;
    margin-bottom: 2rem;
    text-align: left;
}

.product-card li {
    padding: 0.5rem 0;
    color: #4a4a4a;
    position: relative;
    padding-left: 1.5rem;
}

.product-card li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #2a2a2a;
    font-weight: bold;
}

.product-card.featured li:before {
    color: #f5f5f0;
}

/* B2B Section */
.b2b {
    padding: 4rem 0;
    background: #ffffff;
}

.b2b h2 {
    text-align: center;
    margin-bottom: 3rem;
}

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

.b2b-text ul {
    list-style: none;
    margin-top: 1.5rem;
}

.b2b-text li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
    color: #4a4a4a;
}

.b2b-text li:before {
    content: '→';
    position: absolute;
    left: 0;
    color: #2a2a2a;
    font-weight: bold;
}

/* Technology Section */
.technology {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f7f6f3 0%, #f1f0ec 100%);
}

.technology h2 {
    text-align: center;
    margin-bottom: 3rem;
}

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

.tech-card {
    background: #ffffff;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(42, 42, 42, 0.08);
}

/* Contacts Section */
.contacts {
    padding: 4rem 0;
    background: #ffffff;
}

.contacts h2 {
    text-align: center;
    margin-bottom: 3rem;
}

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

.contact-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.contact-icon {
    background: #f5f5f0;
    padding: 0.75rem;
    border-radius: 8px;
    flex-shrink: 0;
}

.contact-item h3 {
    margin-bottom: 0.5rem;
}

.contact-item p {
    margin: 0;
    color: #4a4a4a;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
    color: #f5f5f0;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 3rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.footer-brand .brand-name {
    color: #f5f5f0;
}

.footer-brand p {
    color: #b5b5b5;
    margin-top: 0.5rem;
}

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

.footer-links-column {
    min-width: 150px;
}

.footer-links h4 {
    margin-bottom: 1rem;
    color: #f5f5f0;
}

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

.footer-links a {
    color: #b5b5b5;
    text-decoration: none;
    line-height: 1.8;
}

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

.footer-bottom {
    border-top: 1px solid #3a3a3a;
    padding-top: 1rem;
    text-align: center;
}

.footer-bottom p {
    color: #b5b5b5;
    margin: 0;
}

/* Cookie Banner Styles */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
    color: #f5f5f0;
    padding: 1rem 0;
    box-shadow: 0 -4px 20px rgba(42, 42, 42, 0.3);
    z-index: 1000;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.cookie-text p {
    margin: 0;
    color: #f5f5f0;
    font-size: 0.9rem;
    line-height: 1.4;
}

.cookie-link {
    color: #f5f5f0;
    text-decoration: underline;
}

.cookie-link:hover {
    color: #e8e5dd;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
    flex-wrap: wrap;
}

.cookie-btn {
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.cookie-btn.accept {
    background: #f5f5f0;
    color: #2a2a2a;
}

.cookie-btn.accept:hover {
    background: #e8e5dd;
}

.cookie-btn.reject {
    background: transparent;
    color: #f5f5f0;
    border: 1px solid #f5f5f0;
}

.cookie-btn.reject:hover {
    background: #f5f5f0;
    color: #2a2a2a;
}

.cookie-btn.customize {
    background: transparent;
    color: #f5f5f0;
    border: 1px solid #b5b5b5;
}

.cookie-btn.customize:hover {
    background: #b5b5b5;
    color: #2a2a2a;
}

.cookie-btn.secondary {
    background: #4a4a4a;
    color: #f5f5f0;
}

.cookie-btn.secondary:hover {
    background: #5a5a5a;
}

.cookie-customization {
    border-top: 1px solid #3a3a3a;
    padding-top: 1rem;
    margin-top: 1rem;
}

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

.cookie-options h4 {
    margin-bottom: 1rem;
    color: #f5f5f0;
}

.cookie-option {
    margin-bottom: 1rem;
}

.cookie-option label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
}

.cookie-option input[type="checkbox"] {
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.cookie-category {
    font-weight: 500;
    color: #f5f5f0;
    display: block;
    margin-bottom: 0.25rem;
}

.cookie-option small {
    color: #b5b5b5;
    font-size: 0.8rem;
    display: block;
}

.cookie-custom-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}
/* Responsive Design */
@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .cookie-buttons {
        justify-content: center;
    }
    
    .hero .container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .about-grid,
    .b2b-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .features-grid,
    .games-grid,
    .products-grid,
    .tech-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 2rem;
    }
    
    .container {
        padding: 0 15px;
    }
}