*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
:root{
    --prm-color:blue;
    --scnd-color1:black;
    --scnd-color2:rgb(19, 18, 18);
    --neutral-color:white;
}

html{
    scroll-behavior: smooth;
    height: 100%;
}

body{
    background: var(--scnd-color1);
    font-family: 'Courier New', monospace;
    color: var(--neutral-color);
    /* padding: 2%; */
    cursor: none;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}


/*=========================Presale=================================*/

.presale_cont{
        background-color: transparent;
        color: white;
        font-family: 'Segoe UI', sans-serif;
        margin: 0;
        padding: 0;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        margin-top:5%;
        transform:translateY(190px);
}
h1 {
        font-size: 2rem;
        color: #00aaff;
        margin-bottom: 20px;
    }
    #countdown {
        margin-top:3%;
        font-size: 3rem;
        background: black;
        padding: 15px 25px;
        border-radius: 15px;
        box-shadow: 0px 0px 15px blue;
        min-width: 250px;
    }
    #discord-btn {
        display: none;
        margin-top: 20px;
        background-color: #00aaff;
        color: white;
        padding: 12px 25px;
        font-size: 1.2rem;
        border-radius: 10px;
        text-decoration: none;
        box-shadow: 0px 0px 10px rgba(0, 170, 255, 0.7);
        transition: 0.3s;
    }
    #discord-btn:hover {
        background-color: #0077cc;
        transform: scale(1.05);
    }
    @media (max-width: 600px) {
        #countdown {
            font-size: 2rem;
            padding: 10px 20px;
        }
        h1 {
            font-size: 1.5rem;
        }
    }


/*============================Announcement==========================*/


.announcement-bar {
  width: 100%;
  background-color: #111;
  color: #fff;
  position: sticky;
  top: 0;
  z-index: 9999;
  font-size: 1rem;
  font-weight: 600;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
  overflow: hidden;
  white-space: nowrap;
  padding: 0.7em 0;
}

.announcement-wrapper {
  display: inline-block;
  width: 100%;
  overflow: hidden;
  position: relative;
}

.announcement-track {
  display: inline-block;
  padding-left: 20%;
  animation: scroll-left 30s linear infinite;
  white-space: nowrap;
}

/* Animation for smooth scroll */
@keyframes scroll-left {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-110%);
  }
}

/* Responsive font sizes */
@media (max-width: 768px) {
  .announcement-bar {
    font-size: 0.9rem;
    padding: 0.5em 0;
  }
}

@media (max-width: 480px) {
  .announcement-bar {
    font-size: 0.8rem;
    padding: 0.4em 0;
  }
}




/*============================ Back to Nav ==================================== */

.back-to-nav {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: transparent;
    color: var(--neutral-color);
    font-size: 2rem;
    /* padding: 5px 10px; */
    /* border-radius: 50%; */
    text-decoration: none;
    z-index: 999;
    text-shadow: 1px 1px 15px var(--neutral-color) ;
    /* box-shadow: 0 0 10px var(--prm-color), 0 0 20px var(--prm-color); */
    transition: transform 0.3s ease, background 0.3s ease;
    display: none;
    visibility: hidden;
}

.back-to-nav:hover {
    transform: scale(1.1);
    /* background-color: var(--scnd-color2); */
}




/* ===================Cursor Effect========================== */
.cursor {
    position: fixed;
    width: 20px;
    height: 20px;
    background: var(--prm-color);
    border-radius: 50%;
    pointer-events: none;
    z-index: 99999;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 20px var(--prm-color), 0 0 40px var(--prm-color);
    animation: pulse 1.5s infinite;
  }
  
  @keyframes pulse {
    0%, 100% {
      transform: translate(-50%, -50%) scale(1);
    }
    50% {
      transform: translate(-50%, -50%) scale(1.3);
    }
  }
  
  /* Breathing effect */
  @keyframes pulse {
    0%, 100% {
      transform: translate(-50%, -50%) scale(1);
      box-shadow: 0 0 15px var(--prm-color), 0 0 30px var(--prm-color);
    }
    50% {
      transform: translate(-50%, -50%) scale(1.3);
      box-shadow: 0 0 30px var(--prm-color), 0 0 60px var(--prm-color);
    }
  }
  
  
  .trail {
    position: fixed;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--prm-color);
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 10px var(--prm-color), 0 0 20px var(--prm-color);
    animation: fadeTrail 0.5s ease-out forwards;
  }
  
  @keyframes fadeTrail {
    from {
      opacity: 1;
      transform: translate(-50%, -50%) scale(1);
    }
    to {
      opacity: 0;
      transform: translate(-50%, -50%) scale(0.2);
    }
  }
  
  

/* =========================================================== */

#neuralCanvas {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 0;
    pointer-events: none;
    width: 100vw;
    /* height: 100vh; */
    background: transparent; /* Or transparent if layering */
  }
  



/* ========================= AI Core =============================== */


.ai-core-container {
    position: absolute;
    top: 47%;
    left: 50%;
    transform: translate(-50%, -50%);
    perspective: 1000px;
    z-index: 2;
  }
  
  .ai-core {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--prm-color) 20%, #000 100%);
    box-shadow: 0 0 20px var(--prm-color), 0 0 60px var(--prm-color), inset 0 0 15px var(--prm-color);
    animation: pulseGlow 2.5s infinite ease-in-out;
    transition: transform 0.2s ease;
  }
  
  @keyframes pulseGlow {
    0%, 100% {
      transform: scale(1);
      box-shadow: 0 0 20px var(--prm-color), 0 0 60px var(--prm-color), inset 0 0 15px var(--prm-color)
    }
    50% {
      transform: scale(1.2);
      box-shadow: 0 0 30px var(--prm-color), 0 0 80px var(--prm-color), inset 0 0 25px var(--prm-color)
    }
  }
  
  



/* ================================Header============================= */

header{
    /* color: cyan; */
    background:transparent;
    /* backdrop-filter: blur(30px); */
    position: fixed;
    top:15%;
    left:21%;
    width:70%;
    height: 70px;
    border-radius: 50px;
    /* overflow: hidden; */
    transition: 1s ease-in-out;
    z-index: 1000;
    margin-top:3%;
}

.navbar{
    /* background: grey; */
    width: 100%;
    height: 70%;
    display:flex;
    /* justify-content: space-around; */
}

.navbar:hover .u-list1{
    transform: translateX(10%);
    background: transparent;
    backdrop-filter: blur(15px);
    border:1px solid var(--prm-color);
    box-shadow: 1px 1px 10px var(--prm-color);
}

.navbar:hover .u-list2 img{
    border:1px solid var(--prm-color);
    box-shadow: 1px 1px 10px var(--prm-color);
}



.navbar:hover .u-list3{
    transform: translateX(-10%);
    background: transparent;
    backdrop-filter: blur(15px);
    border: 1px solid var(--prm-color);
    box-shadow: 1px 1px 10px var(--prm-color);
}


.navbar:hover ul li a{
    color:var(--prm-color);
    text-shadow: 1px 1px 30px var(--prm-color);
}

.navbar li a:hover{
    color:var(--neutral-color) !important;
    text-shadow: 1px 1px 30px var(--neutral-color) !important;
}



.u-list1 , .u-list2 , .u-list3{
    /* background: cyan; */
    width: 35%;
    display: flex;
    justify-content: center;
    align-items: center;
    /* gap: 20%; */
    transition: 1s ease-in-out;
}
.u-list1{
    background: var(--prm-color);
    /* box-shadow: 1px 1px 50px blue; */
    padding-right: 10%;
    border-radius: 55px 0 0 25px;
    transform: translateX(33%);
}
.u-list2{
    /* background: white; */
    box-shadow: 1px 1px 10px var(--scnd-color1);
    border-radius: 50%;
    height: 120px;
    width: 120px;
    z-index: 100;
    position: relative;
    top:-90%
    /* width: 300px; */
}
.u-list2 a{
    color: var(--prm-color);
}
.u-list3{
    /* box-shadow: 1px 1px 50px blue; */
    border-radius: 0 55px 25px 0;
    background: var(--prm-color);
    padding-left: 10%;
    transform: translateX(-33%);
}


.navbar ul li{
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.navbar li a{
    text-decoration: none;
    color: var(--neutral-color);
    text-shadow: 1px 1px 30px var(--neutral-color);
    /* background: gold; */
    font-weight: bold;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    font-size: 1.1vw;
    transition: 1s ease-in-out;
    cursor: none;
}

.navbar li a:hover{
    color:var(--neutral-color) !important;
    text-shadow: 1px 1px 30px var(--neutral-color) !important;
}


.list-item3 img{
    width: 100%;
    height: 100%;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--prm-color);
}

/* ================================ Sidebar =================================== */


/* Hide on desktop */
.mobile-nav-toggle.hidden {
    display: none !important;
}


.mobile-nav-toggle{
    display: none;
}
/* Mobile Sidebar */
.mobile-sidebar {
    position: fixed;
    top: 0;
    left: -150px;
    width: 150px;
    height: 100%;
    background: rgba(0, 0, 0, 0.793);
    backdrop-filter: blur(30px);
    box-shadow: 2px 0 10px rgba(0,0,0,0.5);
    transition: left 0.4s ease-in-out;
    z-index: 9999;
    padding: 20px;
}

.mobile-sidebar.open {
    left: 0;
}

.sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sidebar-logo {
    border: 1px solid var(--prm-color);
    box-shadow: 1px 1px 10px var(--prm-color);
    width: 60px;
    border-radius: 50px;
    height: auto;
}
.sidebar-logo img{
    border-radius: 50px;
}

#closeSidebar {
    font-size: 2rem;
    color: var(--neutral-color);
    cursor: pointer;
}

.sidebar-nav {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.sidebar-nav a {
    color: var(--neutral-color);
    text-decoration: none;
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.sidebar-nav a:hover {
    color: var(--prm-color);
}

/* Hamburger Button */
.mobile-nav-toggle {
    position: fixed;
    top: 20px;
    left: 20px;
    font-size: 2rem;
    color: var(--prm-color);
    background: transparent;
    border: none;
    z-index: 10000;
    cursor: pointer;
    padding: 10px;
}

/* Show only for mobile */
@media screen and (max-width: 500px) {
    .mobile-nav-toggle {
        display: block;
    }

    header,
    .navbar {
        display: none !important; /* hide normal navbar */
    }
}



/* ======================Canvas Particle Background */

  /* Canvas Background */
  canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    /* height: 100vh; */
    z-index: 0;
    pointer-events: none;
}


/* =========================== Background Image============================= */

.bg_image img{
    width: 110%;
    position: fixed;
    bottom:20%;
    left: -2%;
    -webkit-mask-image: linear-gradient(to bottom, transparent , black 30%, black 70%,transparent);
    mask-image: linear-gradient(to bottom, transparent , black 30%, black 70%,transparent);
}


/* ==============================Main============================= */

main {
    position: relative;
    margin-top: 10%;
    display: grid;
    grid-template-columns: 1fr;
    row-gap: 5%;
  }

  
  /* main::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    mix-blend-mode: multiply; 
    z-index: -1;
  }
   */
h1:hover{
    /* scale: 1.1; */
}

main h1 , main h2{
    /* cursor: pointer; */
    font-family: 'Courier New', monospace;
    font-size: 3.0vw;
    color: var(--prm-color);
    text-shadow: 0 0 20px var(--prm-color);
    text-transform: uppercase;
    transition: 1S ease-in-out;
}

main h3{
    font-size: 3.5vw;
    color: var(--prm-color);
    text-shadow: 0 0 10px var(--prm-color);
    text-transform: uppercase;
}





/* ========================== Hero Section ====================================== */


.hero{
    background: transparent;
    backdrop-filter: blur(5px);
    box-shadow: 1px 1px 10px var(--prm-color);
    padding: 2%;
    border-radius: 10px;
    max-width: 95%;
    margin: auto;
}



#typedText {
    white-space: pre-wrap;
    font-family: 'Courier New', monospace;
    font-size: 1.3vw;
    color: var(--neutral-color);
    text-shadow: 0 0 2px var(--neutral-color);
    /* border-right: 2px solid var(--neutral-color); */
    /* animation: blink 0.8s infinite; */
  }
  
  /* @keyframes blink {
    0%, 100% { border-color: transparent; }
    50% { border-color: var(--neutral-color); }
  } */
  


/* ===================== About =============================== */

.about{
    display: grid;
    grid-template-columns: 1fr;
    row-gap: 40px;
    max-width: 95%;
    margin: auto;
}

.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
  }
  
  .reveal.active {
    opacity: 1;
    transform: translateY(0);
  }
  


  .about_us {
    background: transparent;
    backdrop-filter: blur(5px);
    box-shadow: 1px 1px 10px var(--prm-color);
    padding: 2%;
    border-radius: 10px;
    font-size: 1.3vw;
  }
  
  .about_us ul {
    list-style: none;
    /* background: aqua; */
    width: 100%;
    gap: 10px;
    padding-left: 1%;
    margin: 3% 0;
  }
  
  .about_us li {
      /* padding-left: 0.5rem; */
    text-align: left;
    width: 100%;
    margin-bottom: 1%;
  }
  
  .about_us li::before {
    content: "➤";
    color: blue;
  }



.mission_n_vision{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10%;
}

.mission , .vision{
    background: transparent;
    backdrop-filter: blur(5px);
    box-shadow: 1px 1px 10px var(--prm-color); 
    padding: 5%;
    border-radius:10px;
}
.mission p , .vision p{
    margin-bottom: 3%;
}

.team{
    margin-top: 5%;
    overflow: hidden;
}

.team h3{
    margin-bottom: 5%;
}

.team_container {
    display: flex;
    gap: 30px;
    overflow: hidden;
    padding: 20px 0;
}


.team_box{
    min-width: 250px;
    max-width: 300px;
    flex-shrink: 0;
    background: transparent;
    backdrop-filter: blur(20px);
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 1px 1px 5px var(--prm-color);
    border-radius: 10px 10px 10px 10px;
    /* animation: card_spin 12s ease-in-out infinite; */
    transform-style: preserve-3d;
    transition: transform 0.4s ease;
    will-change: transform;
}
  
.team_scroll_track {
    display: flex;
    gap: 30px;
    animation: scroll-left 25s linear infinite;
}
  
.team_scroll_track:hover {
    animation-play-state: paused;
    transform: scale(1.1); /* Reduced for less distortion */
  }

  @keyframes scroll-left {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); } /* Adjust depending on number of items */
  }
  
  
  /* @keyframes card_spin {
    0%   { transform: rotateY(0deg); }
    50%  { transform: rotateY(180deg); }
    100% { transform: rotateY(360deg); }
  } */

  .team_box:hover {
    animation-play-state: paused;
    transform: scale(1.1); /* Reduced for less distortion */
  }

  
  .team_content {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    backface-visibility: hidden;  
    transform-style: preserve-3d;
    animation: card_rotation 6s ease-in-out infinite;
  }
  

  

.team_image{
    width:100%;
    border-radius: 10px 10px 0 0;
}
.team_image img{
    width:100%;
    border-radius: 10px 10px 0 0;
}
.team_text{
    padding: 3%;
    margin-top: 3%;
}

.team_text h4{
        font-size: clamp(0.4rem, 0.9vw, 0.8rem);
        color: var(--prm-color);
        text-shadow: 0 0 20px var(--prm-color);
        text-transform: uppercase;
        border-radius: 0 0 10px 10px;
        margin-bottom: 2%;
}
.team_text p{
    font-size: 0.9vw;
    margin-bottom: 2%;
}
.team_text span{
    text-shadow: 0 0 20px var(--neutral-color);
    text-transform: uppercase;
}



@media (max-width: 768px) {
    .team_box {
      animation: none;
      transform: none;
    }
  }
  




/* ============================== Whitepaper ================================= */

.whitepaper-section {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 100px 20px;
  background: transparent;
  /* backdrop-filter: blur(15px); */
  text-align: center;
  color: #ffffff;
}

.whitepaper-container {
  max-width: 700px;
  width: 100%;
  padding: 30px;
  border-radius: 15px;
  background: transparent;
  backdrop-filter: blur(15px);
  box-shadow: 0 0 20px var(--prm-color);
}

.whitepaper-container h2 {
  font-size: 2.2rem;
  margin-bottom: 15px;
  color: var(--prm-color);
}

.whitepaper-text {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 30px;
  color: var(--neutral-color);
}

.download-btn {
  display: inline-block;
  padding: 12px 30px;
  background: var(--prm-color);
  color: var(--neutral-color);
  font-weight: bold;
  border: none;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 1rem;
  box-shadow: 0 4px 15px var(--prm-color);
  margin-bottom:3%;
}

.download-btn:hover {
  background:var(--neutral-color);
  color: var(--prm-color);
  transform: scale(1.05);
}








/* ============================ Roadmap ======================================================== */
.roadmap{
    display: flex;
    justify-content: center;
}
.roadmap_container {
    width: 80%;
    padding: 4% 10%;
    background: transparent;
    backdrop-filter: blur(5px);
    border-radius: 15px;
    box-shadow: 0 0 20px var(--prm-color);
    color: #fff;
  }
  
  .roadmap-heading {
    text-align: center;
    font-size: 2.5rem;
    color: var(--prm-color);
    text-shadow: 0 0 10px var(--prm-color);
    margin-bottom: 40px;
  }
  
  .roadmap-timeline {
    position: relative;
    border-left: 3px solid var(--prm-color);
    padding-left: 30px;
  }
  
  .roadmap-phase {
    position: relative;
    margin-bottom: 50px;
    animation: fadeUp 1s ease forwards;
    opacity: 0;
    transform: translateY(50px);
  }
  
  .phase-dot {
    position: absolute;
    left: -14px;
    top: 5px;
    width: 20px;
    height: 20px;
    background-color: var(--prm-color);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--prm-color);
  }
  
  .phase-content{
    margin-left: 5%;
  }
  .phase-content h3 {
    font-size: 1.6rem;
    margin-bottom: 10px;
  }
  
  .phase-content span {
    font-size: 0.9rem;
    color: #aaa;
  }
  
  .phase-content ul {
    list-style-type: none;
    padding-left: 0;
  }
  
  .phase-content ul li {
    margin-bottom: 8px;
    font-size: 1rem;
    line-height: 1.6;
  }
  
  @keyframes fadeUp {
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  



  /* ===================================== Tokenomics ========================================== */


  .tokenomics{
    display: flex;
    justify-content: center;
  }


  .tokenomics_container {
    padding: 4% 3%;
    background: transparent;
    backdrop-filter: blur(15px);
    border-radius: 15px;
    color: #ffffff;
    box-shadow: 0 0 20px var(--prm-color);
    width: 80%;
    margin-bottom: 100px;
  }
  
  .section-title {
    text-align: center;
    font-size: 2.5rem;
    color: var(--prm-color);
    text-shadow: 0 0 10px var(--prm-color);
    margin-bottom: 30px;
  }
  
  .token-summary {
    text-align: center;
    margin-bottom: 30px;
    font-size: 1.1rem;
  }
  
  .token-table-container {
    overflow-x: auto;
  }
  
  .token-table {
    width: 100%;
    border-collapse: collapse;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    overflow: hidden;
  }
  
  .token-table thead {
    background-color: rgba(0, 0, 255, 0.1);
  }
  
  .token-table th,
  .token-table td {
    padding: 16px;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: #e0e0e0;
    font-size: 0.95rem;
  }
  
  .token-table th {
    color: var(--prm-color);
    text-transform: uppercase;
    font-weight: bold;
  }
  
  .token-table tr:last-child td {
    border-bottom: none;
  }
  
  @media screen and (max-width: 600px) {
    .token-table th,
    .token-table td {
      padding: 12px 8px;
      font-size: 0.85rem;
    }
  
    .section-title {
      font-size: 2rem;
    }
  }
  



/* =================================== Contact Form =========================================== */


.contact{
    /* background: lime; */
    display: flex;
    justify-content: center;
    margin: 5%;
    padding: 5%;
    z-index: 100;
}
.contact-container {
    /* background: pink; */
    width: 90%;
    height: auto;
    /* max-width: 90%; */
    display: flex;
  }

/* =================================== Waitlist Form =========================================== */

.whitelist{
    display: flex;
    justify-content: center;
    margin: -10% 5% -20% 5%;
    padding: 5%;
    z-index: 100;
}
.whitelist-container {
    width: 90%;
    height: auto;
    display: flex;
  }
  
  .whitelist-external .whitelist-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
  
  .whitelist-external .download-btn {
    margin-top: 20px;
  }
  
  .glass-form {
      /* background: purple; */
    width: 100%;
    backdrop-filter: blur(30px);
    border-radius: 15px;
    padding: 40px;
    box-shadow: 1px 1px 10px var(--prm-color);
    color: #e0e0e0;
    display: flex;
    flex-direction: column;
    gap: 15px;
  }
  
  .glass-form h2 {
    text-align: center;
    color: var(--prm-color);
    text-shadow: 0 0 20px var(--prm-color);
  }
  
  .glass-form input,
  .glass-form textarea {
    background: rgba(255, 255, 255, 0.05);
    border: none;
    padding: 12px;
    border-radius: 8px;
    color: #fff;
    font-size: 1rem;
    outline: none;
  }
  
  .glass-form button {
    padding: 12px;
    background-color: var(--prm-color);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    color: #fff;
    font-weight: bold;
    transition: background 0.3s ease;
  }
  
  .glass-form button:hover {
    background-color: var(--prm-color);
  }
  
  #form-status {
    text-align: center;
    font-size: 0.9rem;
  }

  .form_box{
    width: 100%;
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(300px,1fr));
    gap: 5%;
  } 
  .form_box1{
    display: grid;
    grid-template-columns: 1fr;
    gap: 20%;
} 
.form_box2{
    display: grid;
    grid-template-columns: 1fr;
    gap: 20%;
  }




/* Congratulatory Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    justify-content: center;
    align-items: center;
}

.modal-content {
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(20px);
    border-radius: 15px;
    padding: 40px;
    text-align: center;
    box-shadow: 0 0 30px var(--prm-color);
    max-width: 400px;
    width: 90%;
    position: relative;
}

.modal-content h2 {
    color: var(--prm-color);
    text-shadow: 0 0 20px var(--prm-color);
    margin-bottom: 20px;
    font-size: 2rem;
}

.modal-content p {
    color: var(--neutral-color);
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.close-modal {
    position: absolute;
    top: 10px;
    right: 15px;
    color: var(--neutral-color);
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close-modal:hover {
    color: var(--prm-color);
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .modal-content {
        padding: 30px;
        max-width: 90%;
    }

    .modal-content h2 {
        font-size: 1.5rem;
    }

    .modal-content p {
        font-size: 1rem;
    }

    .close-modal {
        font-size: 1.5rem;
    }
}

/* =============================== Footer =============================== */

.footer {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
    text-align: center;
    color: var(--neutral-color);
}

  .footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .footer-content p {
    margin: 0;
    font-size: 0.9rem;
  }

  .social-icons {
    display: flex;
    gap: 15px;
  }
 
  .social-icons a {
    color: var(--neutral-color);
    font-size: 1.3rem;
    transition: transform 0.3s ease, color 0.3s ease;
  }

  .social-icons a:hover {
    color: var(--prm-color);
    transform: scale(1.2);
  }
  