/* Base styles and variables */
:root {
  --neon-red: #ff003c;
  --neon-shadow: 0 0 5px #ff003c, 0 0 10px #ff003c, 0 0 20px #ff003c, 0 0 40px #ff003c;
  --neon-text-shadow: 0 0 5px #ff003c, 0 0 10px #ff003c, 0 0 15px #ff003c;
  --dark-bg: #0f0f0f;
  --darker-bg: #080808;
  --text-color: #f0f0f0;
  --transition: all 0.3s ease;
}

/* General styles */
body {
  font-family: 'Orbitron', sans-serif;
  margin: 0;
  padding: 0;
  background-color: var(--dark-bg);
  color: var(--text-color);
  line-height: 1.6;
}
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: 1200px;
  margin: 0 auto;
  padding: 20px;
}

a {
  color: var(--neon-red);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  text-shadow: var(--neon-text-shadow);
}

/* Header styles */
.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;
}
/* Hamburger menu */
.hamburger-menu {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.bar {
  width: 25px;
  height: 3px;
  background-color: var(--neon-red);
  margin: 3px 0;
  transition: var(--transition);
  box-shadow: var(--neon-shadow);
}

.mobile-nav {
  display: none;
  background-color: var(--darker-bg);
  position: fixed;
  top: 60px;
  left: 0;
  width: 100%;
  z-index: 99;
  box-shadow: 0 2px 15px rgba(255, 0, 60, 0.3);
  transform: translateY(-100%);
  transition: transform 0.3s ease;
}

.mobile-nav.open {
  transform: translateY(0);
}

.mobile-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mobile-nav li {
  padding: 15px 20px;
  border-bottom: 1px solid rgba(255, 0, 60, 0.2);
}

.mobile-nav a {
  color: var(--text-color);
  display: block;
}

.mobile-nav a.active {
  color: var(--neon-red);
  text-shadow: var(--neon-text-shadow);
}

/* Policy page styles */
.policy-container {
  background-color: rgba(15, 15, 15, 0.8);
  border: 1px solid rgba(255, 0, 60, 0.3);
  border-radius: 10px;
  padding: 30px;
  margin-top: 20px;
  margin-bottom: 40px;
  box-shadow: 0 0 10px rgba(255, 0, 60, 0.2);
}

.neon-title {
  color: var(--neon-red);
  text-align: center;
  font-size: 2.5rem;
  margin-top: 0;
  margin-bottom: 10px;
  text-shadow: var(--neon-text-shadow);
}

.neon-subtitle {
  color: var(--neon-red);
  font-size: 1.5rem;
  margin-top: 30px;
  text-shadow: 0 0 3px var(--neon-red);
  border-bottom: 1px solid var(--neon-red);
  padding-bottom: 5px;
}

.last-updated {
  text-align: center;
  margin-bottom: 30px;
  font-style: italic;
  color: #bbbbbb;
}

.policy-section {
  margin-bottom: 30px;
}

.tools-list, 
ul {
  padding-left: 20px;
}

.tools-list li, 
ul li {
  margin-bottom: 5px;
}

.contact-info {
  background-color: rgba(255, 0, 60, 0.05);
  padding: 15px;
  border-radius: 5px;
  border-left: 3px solid var(--neon-red);
}


/* Footer Styles */
footer {
     background-color: rgba(10, 10, 10, 0.9);
    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;
}

/* Responsive design */
@media (max-width: 768px) {
  .desktop-nav {
    display: none;
  }
  
  .hamburger-menu {
    display: flex;
  }
  
  .footer-content {
    flex-direction: column;
    text-align: center;
  }
  
  .footer-links {
    margin-top: 10px;
  }
  
  .footer-links a {
    margin: 0 10px;
  }
  
  .neon-title {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 10px;
  }
  
  .policy-container {
    padding: 15px;
  }
  
  .neon-title {
    font-size: 1.8rem;
  }
  
  .neon-subtitle {
    font-size: 1.3rem;
  }
}



@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;
    }
}
