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

:root {
    --neon-red: #ff003c;
    --neon-red-glow: #ff003c80;
    --dark-bg: #090909;
    --darker-bg: #060606;
    --light-text: #f8f8f8;
    --section-bg: rgba(25, 25, 25, 0.6);
}

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

body {
    background-color: var(--dark-bg);
    color: var(--light-text);
    margin: 0;
    padding: 0;
    background-image: 
        linear-gradient(45deg, rgba(0,0,0,0.92) 0%, rgba(20,20,20,0.9) 100%),
        url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ff003c' fill-opacity='0.1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(255, 0, 60, 0.1) 0%, rgba(10, 10, 10, 1) 70%);
    pointer-events: none;
    z-index: -1;
}


.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 20px;
}

.dropdown{
    display: none;
}
.dropdown li{
    padding: 10px;
}
.drop:hover .dropdown{

    margin: auto;
    width: fit-content;
    padding: 30px;
    top: 20%;
    background: #000000da;
    margin-top: 30vh;
    border-radius: 10px;
    display: grid;
       box-shadow: 0 0 40px rgba(255, 0, 60, 0.3);

}
/* Noise overlay for texture */
.noise {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAMAAAAp4XiDAAAAUVBMVEWFhYWDg4N3d3dtbW17e3t1dXWBgYGHh4d5eXlzc3OLi4ubm5uVlZWPj4+NjY19fX2JiYl/f39ra2uRkZGZmZlpaWmXl5dvb29xcXGTk5NnZ2c4S8BAAAAAXklEQVRIiR3Myw3AIAwDQRDsAoSE9M/5l80ryMPoDXaWZ0d2uBvqKMG7v+f30WjYJ1ph9oL1vPQyomnoLdG54A+U9xvj+kETCG4tpRXwd1XeK8nYQmMJzAXD7rnnB6fCBz9LxgAKAAAAAElFTkSuQmCC');
    opacity: 0.07;
    z-index: -1;
    pointer-events: none;
}

/* Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Orbitron', sans-serif;
    margin-bottom: 20px;
    font-weight: 700;
}

p {
    margin-bottom: 15px;
}

a {
    text-decoration: none;
    color:  #ffffff;
    transition: all 0.3s ease-in-out;
}

ul {
    list-style: none;
}

/* Neon Text Effects */
.neon-text {
    color:  #00f3ff;
    text-shadow: 0 0 5px #00f3ff, 0 0 10px #00f3ff, 0 0 15px #00f3ff, 0 0 20px #00f3ff;
    position: relative;
    display: inline-block;
}

.red-neon-text {
    color:#ff003c;
    text-shadow:  0 0 5px #ff003c, 0 0 10px #ff003c, 0 0 15px #ff003c, 0 0 20px #ff003c;
    position: relative;
    display: inline-block;
}

.glowing-text {
    color: #ffffff;
    text-shadow: 0 0 10px #fff, 0 0 20px #fff, 0 0 30px  #ff003c, 0 0 40px  #ff003c;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        text-shadow: 0 0 10px #fff, 0 0 20px #fff, 0 0 30px  #ff003c, 0 0 40px  #ff003c;
    }
    50% {
        text-shadow: 0 0 15px #fff, 0 0 25px #fff, 0 0 35px  #ff003c, 0 0 50px  #ff003c, 0 0 65px  #ff003c;
    }
    100% {
        text-shadow: 0 0 10px #fff, 0 0 20px #fff, 0 0 30px  #ff003c, 0 0 40px  #ff003c;
    }
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 2rem;
    letter-spacing: 2px;
}

.section-subtitle {
    text-align: center;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.8;
}

/* Header Styles */
header  {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    background-color: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(10px);
    z-index: 100;
    border-bottom: 1px solid rgba(255, 0, 60, 0.2);
    box-shadow: 0 0 20px rgba(255, 0, 60, 0.3);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo h1 {
    font-size: 1.8rem;
    margin: 0;
    letter-spacing: 1px;
}

nav {
    display: flex;
    align-items: center;
}

.menu {
    display: flex;
}

.menu li {
    margin-left: 30px;
}

.menu li a {
    font-family: 'Orbitron', sans-serif;
    font-weight: 500;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
}

.menu li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #ff003c;
    transition: all 0.3s ease-in-out;
    /* box-shadow:  0 0 5px #00f3ff, 0 0 10px #00f3ff, 0 0 15px #00f3ff, 0 0 20px #00f3ff; */
}

.menu li a:hover::after {
    width: 100%;
}

.menu li a.active {
    color:  #ff003c;
}

/* Neon Hover Effect */
.neon-hover:hover {
    color: #ff003c;
    /* text-shadow:  0 0 5px #00f3ff, 0 0 10px #00f3ff, 0 0 15px #00f3ff, 0 0 20px #00f3ff; */
}

/* Mobile Menu */
.mobile-menu-button {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    cursor: pointer;
    z-index: 150;
}

.bar1, .bar2, .bar3 {
    width: 100%;
    height: 3px;
    background-color:  #ffffff;
    transition: all 0.3s ease-in-out;
    border-radius: 3px;
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease-in-out;
}

.mobile-menu-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.mobile-menu {
    text-align: center;
}

.mobile-menu li {
    margin: 20px 0;
}

.mobile-menu li a {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Header */
.neon-box {
    margin: 20px 0;
    padding: 30px;
    text-align: center;
    position: relative;
}

h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: 36px;
    margin-bottom: 10px;
    letter-spacing: 2px;
}

.subtitle {
    font-size: 14px;
    opacity: 0.8;
}

/* Terms Content */
.terms-content {
    margin: 30px 0;
}

.term-section {
    margin-bottom: 30px;
    background-color: var(--section-bg);
    padding: 25px;
    border-radius: 8px;
    border-left: 3px solid var(--neon-red);
    box-shadow: 0 0 15px rgba(0,0,0,0.3);
}

h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 22px;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

p {
    line-height: 1.6;
    margin-bottom: 15px;
}

ul {
    padding-left: 25px;
    margin-bottom: 15px;
}

li {
    margin-bottom: 8px;
    line-height: 1.5;
}

.contact-info {
    color: var(--neon-red);
    font-weight: 500;
}

/* Footer Styles */
footer {
    background-color: var(--darker-bg);
    padding: 40px 20px 20px;
    margin-top: 50px;
}

.neon-border-top {
    border-top: 2px solid var(--neon-red);
    box-shadow: 0 -5px 15px rgba(255, 7, 58, 0.3);
}

.footer-content {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-section {
    flex: 1;
    min-width: 250px;
    margin-bottom: 30px;
    padding: 0 15px;
}

.footer-section h3 {
    margin-bottom: 15px;
}

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

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section a {
    text-decoration: none;
    color: var(--light-text);
    transition: all 0.3s ease;
}

.footer-section a:hover {
    color: #FF3131;
    text-shadow: 0 0 3px #ff073a;
}

.social-icons {
    margin-top: 15px;
}

.social-icons a {
    margin-right: 15px;
    font-size: 1.2rem;
}

.copyright {
    text-align: center;
    padding-top: 20px;
    margin-top: 20px;
    border-top: 1px solid rgba(255, 7, 58, 0.2);
    font-size: 0.9rem;
}

/* Neon Effects */
.neon-text {
    /* color: var(--light-text); */
    /* text-shadow: 0 0 5px var(--neon-red), 0 0 15px var(--neon-red); */
    animation: flicker 5s infinite alternate;
}

.neon-text-small {
    color: var(--neon-red);
    text-shadow: 0 0 5px var(--neon-red), 0 0 10px var(--neon-red);
}

.neon-box {
    border: 2px solid var(--neon-red);
    box-shadow: 0 0 15px var(--neon-red-glow);
    background-color: rgba(15, 15, 15, 0.8);
    border-radius: 8px;
    animation: pulse 4s infinite alternate;
}

/* Animations */
@keyframes flicker {
    0%, 19%, 21%, 23%, 25%, 54%, 56%, 100% {
        opacity: 1;
    }
    20%, 24%, 55% {
        opacity: 0.8;
    }
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 15px var(--neon-red-glow);
    }
    50% {
        box-shadow: 0 0 25px var(--neon-red), 0 0 40px var(--neon-red-glow);
    }
}

/* Media Queries */
@media (max-width: 768px) {
    .hamburger {
        display: block;
    }

    .nav-links {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--darker-bg);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 15px var(--neon-red-glow);
        padding: 20px 0;
    }

    .nav-links.active {
        left: 0;
    }

    .nav-links a {
        margin: 15px 0;
        font-size: 18px;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    h1 {
        font-size: 30px;
    }

    h2 {
        font-size: 20px;
    }
    
    .term-section {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 26px;
    }
    
    .navbar {
        padding: 15px;
    }
    
    .logo {
        font-size: 20px;
    }
    
    .container {
        padding: 10px;
    }
}



@media (max-width: 768px) {
    .menu {
        display: none;
    }
    
    .mobile-menu-button {
        display: flex;
    }
    
    .header-container {
        height: 70px;
    }
    
    .hero {
        padding-top: 120px;
    }
    
    .hero h2 {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
}
