:root {
    --primary-color: #9146ff;
    --secondary-color: #ff0055;
    --bg-dark: #0e0e10;
    --bg-card: #18181b;
    --text-light: #efeff1;
    --text-dim: #adadb8;
    --accent-glow: rgba(145, 70, 255, 0.4);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

span {
    color: var(--primary-color);
}

/* Header & Nav */
header {
    background: rgba(14, 14, 16, 0.95);
    padding: 1rem 10%;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid #2d2d31;
    backdrop-filter: blur(10px);
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: 2px;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin: 0 1.5rem;
}

nav ul li a {
    text-decoration: none;
    color: var(--text-light);
    font-weight: 600;
    transition: 0.3s;
    font-size: 0.9rem;
    text-transform: uppercase;
}

nav ul li a:hover {
    color: var(--primary-color);
}

.social-icons a {
    color: var(--text-light);
    font-size: 1.2rem;
    margin-left: 1.2rem;
    transition: 0.3s;
}

.social-icons a:hover {
    color: var(--primary-color);
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 10%;
    padding-top: 100px;
    background: radial-gradient(circle at 70% 30%, rgba(145, 70, 255, 0.1) 0%, transparent 50%);
}

.hero-content {
    max-width: 600px;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(145, 70, 255, 0.1);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    border: 1px solid rgba(145, 70, 255, 0.3);
}

.dot {
    height: 8px;
    width: 8px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: inline-block;
    margin-right: 8px;
    box-shadow: 0 0 10px var(--primary-color);
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% { transform: scale(0.95); opacity: 0.7; }
    50% { transform: scale(1.2); opacity: 1; }
    100% { transform: scale(0.95); opacity: 0.7; }
}

.hero h1 {
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.hero p {
    font-size: 1.1rem;
    color: var(--text-dim);
    margin-bottom: 2.5rem;
}

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

.btn-primary, .btn-secondary {
    padding: 1.2rem 2.5rem;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 700;
    transition: 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-primary {
    background: var(--primary-color);
    color: white;
    box-shadow: 0 10px 20px rgba(145, 70, 255, 0.3);
}

.btn-secondary {
    border: 2px solid #2d2d31;
    color: var(--text-light);
}

.btn-primary:hover {
    background: #772ce8;
    transform: translateY(-3px);
}

.btn-secondary:hover {
    background: #2d2d31;
    transform: translateY(-3px);
}

.hero-image {
    position: relative;
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.image-container {
    position: relative;
    width: 450px;
    height: 550px;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.6);
}

.profile-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 2;
    position: relative;
}

.image-glow {
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background: var(--primary-color);
    filter: blur(80px);
    opacity: 0.2;
    z-index: 1;
}

/* Partnerships Section */
.partnerships {
    padding: 120px 10%;
    background-color: #080809;
}

.section-title {
    text-align: center;
    margin-bottom: 5rem;
}

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

.partnership-card {
    background: var(--bg-card);
    border-radius: 20px;
    overflow: hidden;
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    box-shadow: 0 15px 40px rgba(0,0,0,0.5);
    border: 1px solid #2d2d31;
}

.card-banner {
    flex: 1.2;
    position: relative;
    overflow: hidden;
    background: #000;
}

.interactive-banner {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
}

.chexx-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    pointer-events: none;
    z-index: 2;
}

.banner-overlay {
    position: absolute;
    top: 25px;
    left: 25px;
    z-index: 3;
}

.badge {
    background: var(--secondary-color);
    padding: 6px 18px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 1px;
}

.card-info {
    flex: 1;
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.brand-logo {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.promo-info {
    background: linear-gradient(90deg, rgba(145, 70, 255, 0.2), transparent);
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 5px solid var(--primary-color);
    margin-bottom: 2rem;
}

.promo-main {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
}

.promo-sub {
    font-size: 1.2rem;
    font-weight: 600;
    margin-top: 5px;
}

.btn-register {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    color: white;
    text-align: center;
    padding: 1.4rem;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 800;
    margin-top: 1.5rem;
    transition: 0.3s;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-register:hover {
    filter: brightness(1.2);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 0, 85, 0.3);
}

/* Contacts Section */
.contacts {
    padding: 120px 10%;
    text-align: center;
}

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

.contact-item {
    background: var(--bg-card);
    padding: 3rem 2rem;
    border-radius: 20px;
    transition: 0.3s;
    border: 1px solid #2d2d31;
}

.contact-item:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
}

.contact-item i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.contact-item h4 {
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.contact-item p {
    color: var(--text-dim);
}

/* Footer */
footer {
    padding: 5rem 10% 3rem;
    background: #080809;
    border-top: 1px solid #2d2d31;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

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

.footer-links a {
    color: var(--text-dim);
    text-decoration: none;
    font-size: 0.9rem;
}

/* Mobile Responsive */
@media (max-width: 1024px) {
    .hero { flex-direction: column; text-align: center; padding-top: 150px; }
    .hero-content { margin-bottom: 4rem; }
    .hero h1 { font-size: 3.5rem; }
    .hero-btns { justify-content: center; }
    .image-container { width: 350px; height: 450px; }
    .partnership-card { flex-direction: column; }
    .card-info { padding: 3rem; }
}

@media (max-width: 768px) {
    nav ul { display: none; }
    .hero h1 { font-size: 2.8rem; }
    .image-container { width: 300px; height: 400px; }
}
