@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&display=swap');

:root {
    --smp-bg-dark: #05000a;
    --smp-bg-card: rgba(20, 5, 40, 0.4);
    --smp-bg-glass: rgba(255, 255, 255, 0.03);
    
    --smp-text-main: #ffffff;
    --smp-text-muted: #a097b0;
    
    --smp-primary: #9d25ff;
    --smp-primary-glow: rgba(157, 37, 255, 0.6);
    
    --smp-secondary: #00e5ff;
    --smp-secondary-glow: rgba(0, 229, 255, 0.6);
    
    --smp-border-glass: rgba(157, 37, 255, 0.25);
    --smp-border-strong: rgba(157, 37, 255, 0.6);
    
    --smp-radius-lg: 24px;
    --smp-radius-md: 16px;
    --smp-radius-sm: 8px;
    
    --smp-shadow-glow: 0 0 30px rgba(157, 37, 255, 0.2);
    --smp-shadow-glow-hover: 0 0 40px rgba(157, 37, 255, 0.4);
    --smp-shadow-card: 0 10px 30px rgba(0,0,0,0.5);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Outfit', sans-serif;
}

body {
    background-color: var(--smp-bg-dark);
    color: var(--smp-text-main);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Background Ambient Glows */
body::before {
    content: '';
    position: fixed;
    top: -20%;
    left: -10%;
    width: 50vw;
    height: 50vw;
    background: radial-gradient(circle, rgba(157,37,255,0.05) 0%, rgba(0,0,0,0) 70%);
    z-index: -1;
    pointer-events: none;
}
body::after {
    content: '';
    position: fixed;
    bottom: -20%;
    right: -10%;
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle, rgba(0,229,255,0.03) 0%, rgba(0,0,0,0) 70%);
    z-index: -1;
    pointer-events: none;
}

a {
    text-decoration: none;
    color: var(--smp-primary);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

a:hover {
    color: var(--smp-secondary);
    text-shadow: 0 0 10px var(--smp-secondary-glow);
}

/* Typography Utilities */
h1, h2, h3, h4 {
    font-weight: 800;
    line-height: 1.2;
}

.smp-gradient-text {
    background: linear-gradient(135deg, #fff 0%, #d5b3ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.smp-cyan-text {
    color: var(--smp-secondary);
    text-shadow: 0 0 15px rgba(0, 229, 255, 0.4);
}

/* Header & Nav */
.smp-header {
    background: rgba(5, 0, 10, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    padding: 12px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.smp-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 18px;
    font-weight: 800;
    color: #fff;
    text-transform: lowercase;
    letter-spacing: -0.5px;
}

.smp-logo img {
    height: 32px;
    width: 32px;
    filter: drop-shadow(0 0 8px rgba(157,37,255,0.8));
}

.smp-nav ul {
    list-style: none;
    display: flex;
    gap: 5px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 40px;
    padding: 6px 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.smp-nav ul li a {
    color: #c4b5d4;
    font-weight: 600;
    font-size: 15px;
    padding: 8px 18px;
    border-radius: 30px;
    display: inline-block;
}

.smp-nav ul li a:hover, .smp-nav ul li a.active {
    background: rgba(157, 37, 255, 0.15);
    color: #fff;
    box-shadow: 0 0 15px rgba(157, 37, 255, 0.2);
}

.smp-burger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
    padding: 5px;
}

.smp-burger div {
    width: 28px;
    height: 2px;
    background-color: #fff;
    border-radius: 2px;
    transition: 0.3s;
}

/* Buttons */
.smp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    background: linear-gradient(135deg, rgba(157, 37, 255, 0.2) 0%, rgba(157, 37, 255, 0) 100%);
    border: 1px solid var(--smp-border-strong);
    color: #fff;
    border-radius: var(--smp-radius-sm);
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 0 15px rgba(157, 37, 255, 0.15);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.smp-btn::before {
    content: '';
    position: absolute;
    top: 0; left: -100%; width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: 0.5s;
}

.smp-btn:hover {
    background: rgba(157, 37, 255, 0.4);
    box-shadow: 0 0 25px rgba(157, 37, 255, 0.4);
    border-color: #fff;
    transform: translateY(-2px);
    color: #fff;
}
.smp-btn:hover::before {
    left: 100%;
}

.smp-btn-solid {
    background: var(--smp-primary);
    border: none;
    box-shadow: 0 4px 15px rgba(157, 37, 255, 0.4);
}
.smp-btn-solid:hover {
    background: #b14dff;
    box-shadow: 0 6px 20px rgba(157, 37, 255, 0.6);
}

/* Hero Section */
.smp-hero {
    position: relative;
    height: 100vh;
    min-height: 800px;
    display: flex;
    align-items: center;
    padding: 0 5%;
    overflow: hidden;
}

.smp-video-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    object-fit: cover;
    z-index: 0;
    opacity: 0.7;
}

.smp-hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(90deg, rgba(5,0,10,0.9) 0%, rgba(5,0,10,0.6) 40%, rgba(5,0,10,0.1) 100%);
    z-index: 1;
}

.smp-hero-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    background: rgba(20, 5, 40, 0.4);
    padding: 50px;
    border-radius: var(--smp-radius-lg);
    border: 1px solid var(--smp-border-glass);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: var(--smp-shadow-card), inset 0 0 20px rgba(157,37,255,0.05);
    margin-top: 50px; /* Offset for header */
}

.smp-hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    font-weight: 800;
    font-size: 12px;
    padding: 6px 16px;
    border-radius: 30px;
    margin-bottom: 24px;
    letter-spacing: 1.5px;
    box-shadow: 0 0 10px rgba(255,255,255,0.1);
}

.smp-hero h1 {
    font-size: 56px;
    margin-bottom: 20px;
    color: #fff;
    line-height: 1.1;
    text-shadow: 0 0 30px rgba(157, 37, 255, 0.3);
}

.smp-hero p {
    font-size: 17px;
    margin-bottom: 35px;
    color: var(--smp-text-muted);
    line-height: 1.8;
}

/* Features Strip (Overlapping video) */
.smp-features-strip {
    position: relative;
    z-index: 10;
    padding: 0 5%;
    margin-top: -100px;
}

.smp-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.smp-feat-card {
    background: linear-gradient(145deg, rgba(30,10,50,0.8) 0%, rgba(15,0,30,0.9) 100%);
    border: 1px solid var(--smp-border-glass);
    border-radius: var(--smp-radius-md);
    padding: 35px 25px;
    text-align: center;
    transition: 0.4s;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    position: relative;
    overflow: hidden;
}

.smp-feat-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 2px;
    background: linear-gradient(90deg, transparent, var(--smp-primary), transparent);
    opacity: 0.5;
}

.smp-feat-card:hover {
    transform: translateY(-10px);
    border-color: var(--smp-border-strong);
    box-shadow: 0 20px 40px rgba(0,0,0,0.6), var(--smp-shadow-glow);
}

.smp-feat-card img {
    width: 90px;
    height: 90px;
    margin-bottom: 20px;
    object-fit: contain;
    filter: drop-shadow(0 0 15px rgba(157,37,255,0.4));
    transition: 0.3s;
}
.smp-feat-card:hover img {
    transform: scale(1.1);
}

.smp-feat-card h3 {
    margin-bottom: 12px;
    color: #fff;
    font-size: 20px;
}

.smp-feat-card p {
    color: var(--smp-text-muted);
    font-size: 15px;
    line-height: 1.6;
}

/* Generic Section Styles */
.smp-section {
    padding: 100px 5%;
    position: relative;
}

.smp-section-dark {
    background: linear-gradient(180deg, #05000a 0%, #0a0014 100%);
    padding: 100px 5%;
    position: relative;
    border-top: 1px solid rgba(255,255,255,0.02);
    border-bottom: 1px solid rgba(255,255,255,0.02);
}

.smp-title {
    text-align: center;
    font-size: 42px;
    margin-bottom: 15px;
    color: #fff;
    letter-spacing: -1px;
}

.smp-title-deco {
    display: block;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--smp-primary), var(--smp-secondary));
    margin: 0 auto 60px;
    border-radius: 4px;
    box-shadow: 0 0 15px var(--smp-primary-glow);
}

/* Split Content */
.smp-split {
    display: flex;
    align-items: center;
    gap: 80px;
}
.smp-split.smp-rev {
    flex-direction: row-reverse;
}

.smp-text {
    flex: 1;
}

.smp-text h3 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #fff;
}

.smp-text h2.smp-sub {
    font-size: 24px;
    margin-top: 40px;
    margin-bottom: 15px;
    color: var(--smp-secondary);
}

.smp-text p {
    margin-bottom: 20px;
    font-size: 17px;
    color: var(--smp-text-muted);
    line-height: 1.8;
}

.smp-img {
    flex: 1;
    display: flex;
    justify-content: center;
    position: relative;
}

.smp-img::before {
    content: '';
    position: absolute;
    width: 70%;
    height: 70%;
    background: var(--smp-primary);
    filter: blur(100px);
    opacity: 0.15;
    z-index: -1;
    border-radius: 50%;
}

.smp-img img {
    max-width: 100%;
    max-height: 550px;
    object-fit: contain;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.5));
}

/* Games Grid */
.smp-games {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}

.smp-game-card {
    background: rgba(15, 5, 25, 0.6);
    border-radius: var(--smp-radius-lg);
    overflow: hidden;
    border: 1px solid var(--smp-border-glass);
    transition: 0.4s;
    display: flex;
    flex-direction: column;
    box-shadow: var(--smp-shadow-card);
}

.smp-game-card:hover {
    transform: translateY(-8px);
    border-color: var(--smp-primary);
    box-shadow: 0 15px 40px rgba(0,0,0,0.6), var(--smp-shadow-glow);
}

.smp-game-img-wrap {
    position: relative;
    padding-top: 65%;
    overflow: hidden;
}

.smp-game-img-wrap img {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    object-fit: cover;
    transition: 0.5s;
}
.smp-game-card:hover .smp-game-img-wrap img {
    transform: scale(1.05);
}

.smp-game-info {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.smp-game-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.smp-game-meta h3 {
    font-size: 22px;
    color: #fff;
}

.smp-game-rating {
    display: flex;
    align-items: center;
    gap: 5px;
    background: rgba(255, 215, 0, 0.1);
    color: #ffd700;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 700;
}

.smp-game-info p {
    color: var(--smp-text-muted);
    font-size: 15px;
    margin-bottom: 25px;
    flex-grow: 1;
}

.smp-game-info .smp-btn {
    width: 100%;
}

/* Team Grid */
.smp-team {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.smp-member {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: var(--smp-radius-md);
    padding: 30px 20px;
    text-align: center;
    transition: 0.3s;
}
.smp-member:hover {
    background: rgba(157,37,255,0.05);
    border-color: var(--smp-border-glass);
}

.smp-member img {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    border: 3px solid rgba(157,37,255,0.3);
    padding: 4px;
}

.smp-member h3 {
    font-size: 18px;
    color: #fff;
    margin-bottom: 5px;
}

.smp-member p {
    font-size: 14px;
    color: var(--smp-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

/* FAQ Grid */
.smp-faq-grid {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    align-items: center;
    padding: 40px 0;
}

.smp-faq-center-img {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 350px;
    z-index: 1;
    pointer-events: none;
    opacity: 0.8;
    filter: drop-shadow(0 0 40px rgba(157,37,255,0.3));
}

.smp-faq-item {
    background: rgba(15, 5, 25, 0.7);
    border-radius: var(--smp-radius-md);
    padding: 25px;
    border: 1px solid var(--smp-border-glass);
    position: relative;
    z-index: 2;
    backdrop-filter: blur(10px);
    transition: 0.3s;
}
.smp-faq-item:hover {
    border-color: var(--smp-primary);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.4);
}

.smp-faq-item h3 {
    font-size: 15px;
    color: #fff;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.smp-faq-item p {
    color: var(--smp-text-muted);
    font-size: 14px;
    line-height: 1.7;
}

/* Contact Wrap */
.smp-contact-wrap {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
}

.smp-contact-info-card {
    background: linear-gradient(145deg, rgba(30,10,50,0.6) 0%, rgba(15,0,30,0.8) 100%);
    padding: 40px;
    border-radius: var(--smp-radius-lg);
    border: 1px solid var(--smp-border-glass);
}

.smp-contact-info-card h3 {
    font-size: 24px;
    color: #fff;
    margin-bottom: 20px;
}
.smp-contact-info-card p {
    color: var(--smp-text-muted);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.smp-contact-form-inner {
    background: rgba(255,255,255,0.02);
    padding: 40px;
    border-radius: var(--smp-radius-lg);
    border: 1px solid rgba(255,255,255,0.05);
}

.smp-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.smp-form-full {
    grid-column: 1 / -1;
}

.smp-form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 14px;
    color: #d0d0d0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.smp-input {
    width: 100%;
    padding: 15px 20px;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: #fff;
    font-size: 15px;
    outline: none;
    transition: 0.3s;
}

.smp-input:focus {
    border-color: var(--smp-primary);
    box-shadow: 0 0 0 3px rgba(157, 37, 255, 0.2);
    background: rgba(157, 37, 255, 0.05);
}

textarea.smp-input {
    height: 150px;
    resize: none;
}

/* Informational Content Blocks */
.smp-content-block {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: var(--smp-radius-lg);
    padding: 40px;
    margin-bottom: 30px;
}
.smp-content-block h3 {
    font-size: 24px;
    color: var(--smp-secondary);
    margin-bottom: 15px;
}
.smp-content-block p {
    color: var(--smp-text-muted);
    line-height: 1.8;
    margin-bottom: 15px;
}
.smp-content-block ul {
    list-style: none;
    margin-bottom: 15px;
}
.smp-content-block ul li {
    color: var(--smp-text-muted);
    padding-left: 20px;
    position: relative;
    margin-bottom: 10px;
}
.smp-content-block ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--smp-primary);
    font-weight: bold;
}

/* Footer */
.smp-footer {
    background: #020005;
    padding: 0;
    border-top: 1px solid rgba(157, 37, 255, 0.15);
}

.smp-resp {
    text-align: center;
    padding: 50px 5%;
    background: linear-gradient(180deg, rgba(157,37,255,0.05) 0%, transparent 100%);
    border-bottom: 1px solid rgba(255,255,255,0.03);
}

.smp-resp h2 {
    font-size: 32px;
    color: #fff;
    margin-bottom: 15px;
}

.smp-resp p {
    font-size: 16px;
    color: var(--smp-text-muted);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

.smp-footer-main {
    padding: 60px 5%;
}

.smp-f-grid {
    display: grid;
    grid-template-columns: 2fr 3fr 1fr;
    gap: 60px;
}

.smp-f-col h3 {
    color: #fff;
    font-size: 18px;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.smp-f-col ul {
    list-style: none;
}
.smp-f-col ul li {
    margin-bottom: 12px;
}
.smp-f-col ul li a {
    color: var(--smp-text-muted);
    font-size: 15px;
}
.smp-f-col ul li a:hover {
    color: var(--smp-secondary);
}

.smp-disc {
    font-size: 13px;
    color: #666;
    line-height: 1.7;
}

.smp-footer-help {
    text-align: center;
    padding: 40px 5%;
    border-top: 1px solid rgba(255,255,255,0.03);
    background: rgba(255,255,255,0.01);
}

.smp-help-phone {
    font-size: 28px;
    font-weight: 800;
    color: var(--smp-primary);
    display: block;
    margin: 10px 0;
    text-shadow: 0 0 15px rgba(157,37,255,0.3);
}

.smp-help-sub {
    font-size: 14px;
    color: #888;
    margin-bottom: 20px;
    display: block;
}

.smp-help-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    font-size: 15px;
}

.smp-copy {
    text-align: center;
    color: #444;
    font-size: 13px;
    padding: 20px 5%;
    border-top: 1px solid rgba(255,255,255,0.02);
}

/* Popups */
.smp-popup-overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.9);
    backdrop-filter: blur(15px);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
}
.smp-popup-overlay.smp-active {
    display: flex;
}

.smp-popup-box {
    background: linear-gradient(145deg, rgba(20,5,40,1) 0%, rgba(10,0,20,1) 100%);
    border: 1px solid var(--smp-border-strong);
    box-shadow: 0 20px 50px rgba(0,0,0,0.8), inset 0 0 20px rgba(157,37,255,0.1);
    border-radius: var(--smp-radius-lg);
    padding: 50px;
    max-width: 500px;
    text-align: center;
    width: 90%;
}
.smp-popup-box h2 {
    font-size: 30px;
    color: #fff;
    margin-bottom: 20px;
}
.smp-popup-box p {
    color: var(--smp-text-muted);
    margin-bottom: 30px;
    line-height: 1.6;
}

.smp-cookie-banner {
    position: fixed;
    bottom: -100%; left: 0; width: 100%;
    background: rgba(5,0,10,0.95);
    border-top: 1px solid var(--smp-border-glass);
    padding: 20px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 9998;
    transition: 0.5s;
    backdrop-filter: blur(10px);
}
.smp-cookie-banner.smp-show {
    bottom: 0;
}

/* Responsive */
@media (max-width: 1200px) {
    .smp-f-grid { grid-template-columns: 1fr 2fr 1fr; gap: 40px; }
    .smp-hero h1 { font-size: 48px; }
}

@media (max-width: 991px) {
    .smp-burger { display: flex; }
    .smp-nav {
        position: absolute;
        top: 60px; left: -100%; width: 100%;
        background: rgba(5,0,10,0.98);
        transition: 0.4s;
        border-bottom: 1px solid var(--smp-border-glass);
        padding: 30px 0;
    }
    .smp-nav.smp-active { left: 0; }
    .smp-nav ul {
        flex-direction: column;
        background: none; border: none;
        align-items: center; gap: 15px;
    }
    .smp-features { grid-template-columns: 1fr; }
    .smp-features-strip { margin-top: 40px; }
    .smp-split, .smp-split.smp-rev { flex-direction: column; gap: 40px; }
    .smp-games { grid-template-columns: 1fr; }
    .smp-team { grid-template-columns: repeat(2, 1fr); }
    .smp-faq-grid { grid-template-columns: 1fr; }
    .smp-faq-center-img { display: none; }
    .smp-contact-wrap { grid-template-columns: 1fr; }
    .smp-f-grid { grid-template-columns: 1fr; }
    .smp-cookie-banner { flex-direction: column; gap: 15px; text-align: center; }
}

@media (max-width: 600px) {
    .smp-hero h1 { font-size: 36px; }
    .smp-hero-content { padding: 30px; margin-top: 20px; }
    .smp-form-grid { grid-template-columns: 1fr; }
    .smp-team { grid-template-columns: 1fr; }
    .smp-section { padding: 60px 5%; }
    .smp-section-dark { padding: 60px 5%; }
}
