:root {
    --gta-orange: #FF8C00;
    --gta-purple: #9B4DCA;
    --gta-green: #00FF00;
    --gta-yellow: #FFD700;
}

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

body {
    font-family: 'Inter', sans-serif;
    background-color: #0a0a0a;
    color: #ffffff;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

/* Navbar */
.navbar {
    background: rgba(10, 10, 10, 0.95);
    border-bottom: 2px solid var(--gta-orange);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    will-change: transform;
    backface-visibility: hidden;
}

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

.nav-brand {
    font-family: 'Bebas Neue', cursive;
    font-size: 2rem;
    color: var(--gta-orange);
    text-shadow: 0 0 20px rgba(255, 140, 0, 0.7);
    text-decoration: none;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--gta-orange);
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 5rem 2rem 3rem;
    background: rgba(20, 20, 20, 0.5);
    border-bottom: 2px solid var(--gta-orange);
}

.glow-text {
    font-family: 'Bebas Neue', cursive;
    font-size: 4rem;
    color: var(--gta-orange);
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: #cccccc;
    margin-bottom: 3rem;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
}

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

.stat-number {
    font-family: 'Bebas Neue', cursive;
    font-size: 3rem;
    color: var(--gta-orange);
}

.stat-label {
    color: #aaaaaa;
    font-size: 1rem;
}

/* Partners Section */
.partners-section {
    padding: 4rem 0;
}

/* Filter Tabs */
.filter-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-tab {
    background: rgba(20, 20, 20, 0.8);
    border: 2px solid rgba(255, 140, 0, 0.3);
    color: #ffffff;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.filter-tab:hover,
.filter-tab.active {
    background: var(--gta-orange);
    border-color: var(--gta-orange);
    color: #000000;
    box-shadow: 0 5px 20px rgba(255, 140, 0, 0.4);
}

/* Partners Grid */
.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
    gap: 2rem;
    transform: translateZ(0);
}

.partner-card {
    background: rgba(10,10,10,0.95);
    border: 2px solid rgba(255, 140, 0, 0.5);
    border-radius: 20px;
    padding: 2.5rem;
    transition: transform 0.15s ease, border-color 0.15s ease;
    opacity: 1;
    position: relative;
    will-change: transform;
    backface-visibility: hidden;
    transform: translateZ(0);
}

/* Ensure cards have consistent layout and height */
.partner-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 360px;
}

.partner-card:hover {
    border-color: var(--gta-orange);
    transform: translate3d(0, -2px, 0);
}

.partner-card.featured {
    border-color: var(--gta-green);
    background: rgba(20, 20, 20, 0.95);
}

.partner-card.featured:hover {
    border-color: var(--gta-green);
}

.featured-label {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--gta-green);
    color: #000000;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: bold;
    font-size: 0.9rem;
    z-index: 1;
}

/* Partner Header */
.partner-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.partner-logo {
    flex-shrink: 0;
}

.partner-logo img {
    width: 54px;
    height: 54px;
    border-radius: 12px;
    object-fit: cover;
}

.partner-info {
    flex: 1;
}

.partner-info h3 {
    font-size: 2rem;
    color: var(--gta-orange);
    margin-bottom: 0.2rem;
}

.partner-category {
    color: #aaaaaa;
    font-size: 0.9rem;
}

/* Badges */
.partner-badge {
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: bold;
}

.partner-badge.promo {
    background: var(--gta-purple);
    color: white;
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
}

.partner-badge.bonus {
    background: var(--gta-yellow);
    color: #000000;
}

.partner-badge.free {
    background: var(--gta-green);
    color: #000000;
}

/* Partner Description */
.partner-description {
    color: #e6e6e6;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

/* Features */
.partner-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.feature-tag {
    background: transparent;
    border: 1.5px solid rgba(255,140,0,0.85);
    color: var(--gta-orange);
    padding: 0.5rem 0.9rem;
    border-radius: 24px;
    font-size: 0.9rem;
    font-weight: 600;
}

/* Partner Actions */
.partner-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-wrap: nowrap;
    margin-top: 1rem;
}

.btn-partner {
    flex: 1 1 auto;
    min-width: 220px;
    max-width: 100%;
    background: var(--gta-orange);
    color: white;
    text-decoration: none;
    padding: 0 2.2rem;
    height: 64px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 40px;
    font-weight: 800;
    text-align: center;
    font-size: 1.05rem;
    transition: opacity 0.15s ease;
}

.btn-partner:hover {
    opacity: 0.9;
}

.btn-promo {
    background: transparent;
    border: 3px solid var(--gta-purple);
    color: white;
    padding: 0 1.2rem;
    border-radius: 40px;
    font-weight: 800;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    height: 64px;
    min-width: 240px;
    justify-content: center;
}

.btn-promo:hover {
    background: rgba(155,77,202,0.95);
    transform: translate3d(0, -1px, 0);
}

.promo-text {
    font-family: 'Courier New', monospace;
    font-size: 1rem;
}

.promo-discount {
    background: rgba(255,255,255,0.12);
    color: #ffffff;
    padding: 0.4rem 0.8rem;
    border-radius: 14px;
    font-size: 0.95rem;
    border: 1px solid rgba(255,255,255,0.06);
    font-weight: 700;
}

.action-subtext {
    display:flex;
    gap:18px;
    margin-top:8px;
    color:#bdbdbd;
    font-size:0.95rem;
}

.info-badge {
    background: rgba(0, 255, 0, 0.2);
    border: 2px solid var(--gta-green);
    color: var(--gta-green);
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-weight: bold;
    text-align: center;
}

/* Promo Notification */
.promo-notification {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: linear-gradient(135deg, var(--gta-green), var(--gta-yellow));
    color: #000000;
    padding: 1rem 2rem;
    border-radius: 10px;
    font-weight: bold;
    box-shadow: 0 10px 30px rgba(0, 255, 0, 0.4);
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 10000;
}

.promo-notification.show {
    opacity: 1;
    transform: translateY(0);
}

/* CTA Section */
.cta-section {
    background: var(--gta-orange);
    border-radius: 20px;
    padding: 4rem 2rem;
    text-align: center;
    margin: 4rem 0;
}

.cta-section h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
}

.cta-button {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: rgba(0, 0, 0, 0.3);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.2rem;
    transition: background-color 0.15s ease, color 0.15s ease;
    border: 3px solid white;
}

.cta-button:hover {
    background: white;
    color: #000;
}

/* Footer */
.footer {
    background: rgba(10, 10, 10, 0.95);
    border-top: 2px solid var(--gta-orange);
    padding: 3rem 0 1rem;
    margin-top: 5rem;
}

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

.footer-section h3 {
    font-family: 'Bebas Neue', cursive;
    font-size: 1.5rem;
    color: var(--gta-orange);
    margin-bottom: 1rem;
}

.footer-section p {
    color: #aaaaaa;
}

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

.footer-section li {
    margin: 0.8rem 0;
}

.footer-section a {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: var(--gta-orange);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 140, 0, 0.2);
    color: #777777;
}

/* Responsive */
@media (max-width: 768px) {
    .glow-text {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-stats {
        gap: 2rem;
    }
    
    .partners-grid {
        grid-template-columns: 1fr;
    }
    
    .filter-tabs {
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 1rem;
    }
    
    .filter-tab {
        white-space: nowrap;
    }
    
    .partner-actions {
        flex-direction: column;
    }
    
    .btn-partner,
    .btn-promo {
        width: 100%;
    }
    
    .nav-menu {
        gap: 1rem;
        font-size: 0.9rem;
    }
}
