
html { 
    line-height: 1.15; 
    -webkit-text-size-adjust: 100%; 
    scroll-behavior: smooth; 
}

body { 
    margin: 0; 
    font-family: 'Inter', sans-serif; 
    background: #050505;
    color: #e0e0e0; 
    overflow-x: hidden; 
}

* { box-sizing: border-box; }

:root {
    --primary: #9D4EDD; 
    
    --accent: #00F0FF; 
    
    --secondary-bg: #121212;
    
    --gradient-main: linear-gradient(135deg, #5a189a 0%, #9D4EDD 100%);

    
}

h1, h2, h3 { 
    color: #00F0FF; 
    text-transform: uppercase; 
    margin-top: 0; 
    letter-spacing: 1px; 
}

h1 { 
    font-size: 3rem; 
    font-weight: 900; 
    
}

h2 { 
    font-size: 2.5rem; 
    
    
    margin-bottom: 1rem; 
    display: inline-block;
}

p { 
    font-size: 1.1rem; 
    line-height: 1.6; 
    color: #b0b0b0; 
}

a { 
    text-decoration: none; 
    transition: 0.3s; 
    color: #fff;
}

.main-header:hover{
    scale: 105%
}



.main-header {

    padding: 20px 0;
  
    position: absolute;
    width: 100%;
    height: 14  %;
    top: 0;
    z-index: 100;
   
}

.header-inner { 
     display: flex; 
    justify-content: center;
    align-items: center; 
    width: 100%; 
}



.nav-cta { 
    border: 1px solid var(--primary); 
    padding: 8px 20px; 
    border-radius: 50px;
    color: #fff !important; 
    background: rgba(157, 78, 221, 0.1);
}

.nav-cta:hover {
    background: var(--primary);
    box-shadow: 0 0 15px var(--primary);
}

@media (max-width: 768px) {
    
    h2 {
        font-size: 1.7rem;
        line-height: 1.3;
        word-wrap: break-word;
    }

    .panel-content {
        padding: 30px 20px;
    }

    h1 {
        font-size: 2rem;
    }
}

.container, .container1, .container2{ 
    max-width: 1140px; 
    margin: 0 auto; 
    padding: 0 20px; 
    position: relative; 
}

.container1 { 
    margin-bottom: 60px;
}

.container2 { 
    margin-top: 60px;
}

.section-header { text-align: center; margin-bottom: 60px; margin-top: 10px; }
.section-desc { max-width: 600px; margin: 0 auto; color: #888; }

.hero-section {
    padding-top: 180px; 
    padding-bottom: 100px;
    background: radial-gradient(circle at top center, rgba(26, 11, 46, 0.85) 0%, rgba(5, 5, 5, 0.95) 80%),
        url('/images/hero-bg.png');
    min-height: 100vh;

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.border-decor__gradient {
    position: relative;
    padding: 8px;
    background: #222;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.border-decor__gradient::before {
    content: ''; 
    position: absolute; 
    inset: -50%; 
    background: conic-gradient(from 0deg, transparent, var(--primary), var(--accent), transparent 60%);
    animation: rotate 6s linear infinite;
    z-index: 0;
}

@keyframes rotate { 
    100% { transform: rotate(360deg); } 
}

.hero-section__content, .panel-content, .game-tile__img {
    background: var(--secondary-bg);
    position: relative;
    z-index: 1;
    border-radius: 18px;
}

.hero-section__content { padding: 50px 40px; text-align: center; }

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 18px 60px;
    background: var(--gradient-main);
    color: #fff;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 50px;
    font-size: 1.1rem;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    
}

.btn span { position: relative; z-index: 2; }

.btn:hover { 
    transform: translateY(-3px); 
    
}

.btn:after {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
  
    opacity: 0;
    transition: opacity 0.3s;
    z-index: 1;
}

.btn:hover:after { opacity: 1; }

.btn-holder { margin-top: 30px; }

.media { 
    position: relative; 
    width: 100%; 
    max-width: 800px; 
    margin: 40px auto; 
    aspect-ratio: 16/9; 
    background: #000; 
    border-radius: 16px; 
    overflow: hidden; 
    border: 1px solid #333;
}

.media-holder video { width: 100%; height: 100%; object-fit: cover; }

.play-btn { 
    position: absolute; 
    top: 50%; left: 50%; 
    transform: translate(-50%, -50%); 
    cursor: pointer; 
    transition: 0.3s; 
    width: 80px; height: 80px; 
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(5px);
    display: flex; justify-content: center; align-items: center;
    border: 1px solid rgba(255,255,255,0.3);
}

.play-btn img { width: 40%; filter: invert(1); }

.play-btn:hover { 
    transform: translate(-50%, -50%) scale(1.1); 
    background: var(--primary);
    border-color: var(--primary);
}

.mute-toggle { 
    position: absolute; bottom: 15px; right: 15px; 
    background: rgba(0,0,0,0.7); 
    border: 1px solid rgba(255,255,255,0.1); 
    color: var(--accent); 
    width: 40px; height: 40px; 
    border-radius: 50%; 
    cursor: pointer; 
    display: grid; place-items: center; 
    z-index: 10; 
}

.row { display: flex; flex-wrap: wrap; margin: -15px; }
.col-3 { width: 33.333%; padding: 15px; }
@media (max-width: 768px) { .col-3 { width: 100%; } }

.game-tile { transition: 0.3s; }
.game-tile:hover { transform: translateY(-8px); }

.game-tile__img { 
    position: relative; 
    aspect-ratio: 9/16; 
    overflow: hidden; 
    border-radius: 16px;

    display: block;
    margin: 0;
    width: 100%;
}

.game-info-overlay {
    position: absolute; bottom: 0; left: 0; width: 100%;
    background: linear-gradient(to top, rgba(5,5,5,1), transparent);
    padding: 25px 20px 15px;
    text-align: center;
}

.game-info-overlay h3 { 
    font-size: 1.3rem; 
    margin-bottom: 5px; 
    color: #fff; 
    font-weight: 600;
}

.game-info-overlay span { 
    font-size: 0.8rem; 
    color: var(--accent); 
    text-transform: uppercase; 
    letter-spacing: 1.5px; 
    font-weight: bold;
}

.panel-section { padding: 100px 0; background: #080808; }
.panel-content { padding: 60px; text-align: center; }

#bli-med {
    background: url('/images/disbg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.feature-list { 
    list-style: none; 
    padding: 0; 
    margin: 40px 0; 
    font-size: 1.2rem; 
    color: #dcdcdc; 
}
.feature-list li { margin: 15px 0; }

.disclaimer-text { 
    font-size: 0.85rem; 
    color: #555; 
    border-top: 1px solid #222;
    padding-top: 20px;
    margin-top: 30px;
}

.main-footer { 
    padding: 80px 0 40px; 
    background: #020202; 
    border-top: 1px solid #151515; 
    text-align: center; 
    color: #666; 
}

.footer-logo img { max-width: 120px; opacity: 0.7; margin-bottom: 30px; filter: grayscale(100%); }
.footer-logo img:hover { filter: grayscale(0%); transition: 0.3s; }

.legal-disclaimer { 
    max-width: 800px; 
    margin: 0 auto 30px; 
    font-size: 0.8rem; 
    line-height: 1.5; 
    border: 1px solid #222; 
    padding: 20px; 
    border-radius: 12px; 
    background: #0a0a0a; 
}

.footer-nav a { color: #888; margin: 0 12px; font-size: 0.9rem; text-decoration: none; }
.footer-nav a:hover { color: var(--primary); }

.copyright { margin-top: 40px; font-size: 0.75rem; opacity: 0.5; }

.slide-up { opacity: 0; transform: translateY(30px); transition: 0.8s cubic-bezier(0.2, 0.8, 0.2, 1); }
.slide-up.in-view { opacity: 1; transform: translateY(0); }

.slide-up1{
    color: #efefef !important; 
     background: none !important;
    -webkit-text-fill-color: #efefef !important;
    -webkit-background-clip: border-box !important;
}

.modal-overlay { 
    position: fixed; inset: 0; 
    background: rgba(0,0,0,0.85); 
    backdrop-filter: blur(5px);
    z-index: 1000; 
    display: flex; justify-content: center; align-items: center; 
    opacity: 0; visibility: hidden; 
    transition: 0.3s; 
}
.modal-overlay.is-open { opacity: 1; visibility: visible; }

.modal { width: 90%; max-width: 480px; }

.modal-body { 
    background: #121212; 
    padding: 40px; 
    border-radius: 20px; 
    color: #fff; 
    position: relative; 
    border: 1px solid #333;
}

.modal-close { 
    position: absolute; top: 15px; right: 20px; 
    background: none; border: none; 
    color: #666; font-size: 2rem; 
    cursor: pointer; z-index: 2; 
    transition: 0.2s;
}
.modal-close:hover { color: #fff; }

.modal-header h3 { color: #fff; margin-bottom: 0; font-size: 1.5rem; }

.input-label { display: block; margin-bottom: 8px; font-size: 0.9rem; color: #aaa; margin-top: 15px; }

.text { 
    width: 100%; 
    padding: 14px; 
    background: #050505; 
    border: 1px solid #333; 
    color: #fff; 
    border-radius: 8px; 
    font-size: 1rem; 
    transition: 0.3s;
}

.text:focus { 
    outline: none; 
    border-color: var(--primary); 
    box-shadow: 0 0 10px rgba(157, 78, 221, 0.2);
}

.privacy-check { margin-top: 20px; font-size: 0.8rem; color: #888; display: flex; gap: 10px; align-items: center; }

.contact-section {
    padding: 80px 0;
    background: #080808;
}

.contact-panel {
    max-width: 1140px;
    margin: 0 auto;
}

.contact-content {
    background: var(--secondary-bg);
    padding: 40px;
    border-radius: 18px;
    position: relative;
    z-index: 1;
}

.cyber-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: flex;
    gap: 20px;
}

.form-group {
    width: 100%;
    display: flex;
    flex-direction: column;
    text-align: left;
}

.form-group label {
    color: #aaa;
    font-size: 0.9rem;
    margin-bottom: 8px;
    margin-left: 5px;
}

.cyber-input {
    width: 100%;
    background: #050505;
    border: 1px solid #333;
    color: #fff;
    padding: 15px;
    border-radius: 10px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.cyber-input:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 15px rgba(0, 240, 255, 0.2);
}

select.cyber-input {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2300F0FF' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 16px;
}

textarea.cyber-input {
    resize: vertical;
    min-height: 120px;
}

@media (max-width: 768px) {
    .form-row {
        flex-direction: column;
        gap: 20px;
    }
    .contact-content {
        padding: 25px;
    }
}