/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background-color: #f8f9fa;
    color: #333;
}

/* Header */
.header-section {
    background-color: #fff;
    border-bottom: 1px solid #e9ecef;
    padding: 1.5rem 0;
}

.logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.logo-icon {
    width: 250px;
    height: auto;
}

.logo-text {
    font-size: 1.125rem;
    font-weight: 400;
    color: #4a90e2;
}

/* Main Content */
.main-content {
    padding: 3rem 0;
}

.hero-section {
    text-align: center;
    margin-bottom: 3rem;
}

.main-title {
    font-size: 3rem;
    font-weight: 700;
    color: #212529;
    margin-bottom: 1rem;
}

.subtitle {
    font-size: 1.125rem;
    color: #6c757d;
}

/* Brands Grid */
.brands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* Brand Card */
.brand-card {
    background-color: #fff;
    border-radius: 8px;
    overflow: visible;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

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

/* Badge */
.badge-container {
    position: absolute;
    top: 1rem;
    right: -8px;
    z-index: 10;
}

.coming-soon-badge {
    background-color: #2563eb;
    color: #fff;
    padding: 0.375rem 1rem 0.375rem 0.75rem;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    display: block;
    position: relative;
}

.coming-soon-badge::after {
    content: '';
    position: absolute;
    right: 0;
    bottom: -8px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 8px 8px 0;
    border-color: transparent #1e40af transparent transparent;
}

/* Brand Image Container */
.brand-image-container {
    height: 220px;
    background-color: #f1f3f5;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    border-radius: 8px 8px 0 0;
}

.brand-image {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
}

/* Gaming Logo */
.gaming-logo {
    background-color: #f8f9fa;
}

/* Brand Info */
.brand-info {
    padding: 1.5rem;
}

.brand-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #212529;
    margin-bottom: 0.5rem;
}

.brand-description {
    font-size: 0.9375rem;
    color: #6c757d;
    margin-bottom: 1rem;
}

.explore-link {
    color: #4a90e2;
    text-decoration: none;
    font-size: 0.9375rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    transition: color 0.2s ease;
}

.explore-link:hover {
    color: #2563eb;
}

/* Footer */
.footer-text {
    text-align: center;
    margin-top: 3rem;
    color: #6c757d;
    font-size: 0.875rem;
}

/* Modal Customization */
.modal-content {
    border-radius: 8px;
    border: none;
}

.modal-header {
    border-bottom: 1px solid #e9ecef;
    padding: 1.5rem;
}

.modal-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #212529;
}

.modal-body {
    padding: 2rem 1.5rem;
    text-align: center;
}

.modal-brand-text {
    font-size: 1.125rem;
    color: #212529;
    margin-bottom: 1.5rem;
}

.modal-contact-text {
    font-size: 0.9375rem;
    color: #6c757d;
    margin-bottom: 0.75rem;
}

.modal-email {
    color: #4a90e2;
    text-decoration: none;
    font-size: 1.125rem;
    font-weight: 500;
}

.modal-email:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .main-title {
        font-size: 2rem;
    }
    
    .brands-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .brand-image-container {
        height: 200px;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .brands-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1025px) {
    .brands-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
