       :root {
            --dark: #000000;
            --darker: #050505;
            --light: #F5F5F5;
            --primary: #fd1313;
            --secondary: #00F0FF;
            --glass: rgba(255, 255, 255, 0.08);
            --text-color: #ffffff;
            --extra-light: #ffffff;
            --black-color: #ffffff;
            --glass-bg: rgba(255, 255, 255, 0.2);
            --glass-border: rgba(255, 255, 255, 0.4);
            --background: #303030;
            --input-bg: #acacac88;
            --primary-bg: radial-gradient(circle at 25% 25%, rgba(253, 19, 89, 0.068) 0%, transparent 50%),
                radial-gradient(circle at 75% 75%, rgba(0, 238, 255, 0.068) 0%, transparent 50%);

            --primary-color: rgb(255, 0, 0);
            --secondary-color: rgb(255, 10, 181);
            --tertiary-color: rgb(4, 255, 159);
            --gradient: linear-gradient(135deg, var(--primary-color), var(--secondary-color), var(--tertiary-color));

            --transition-speed: 0.3s;
            --small-body: clamp(0.7rem, 1.5vw, .9rem);
            --space-sm: clamp(1rem, 1vw, 1rem);  /* Small */

      --bg: #ffffff;
      --bg-subtle: #f5f5f5;
      --panel: rgba(255, 255, 255, 0.267);
      --panel-hover: rgba(255, 255, 255, 0.267);
      --panel-2: #cccccc;
      --text: #ffffff;
      --text-muted: #ffffff;
      --text-subtle: #ffffff;
      --brand: rgba(255, 255, 255, 0.267);
      --brand-hover: rgba(255, 255, 255, 0.267);
      --brand-light: rgba(255, 255, 255, 0.267);
      --accent: #000000;
      --success: #000000;
      --warning: #000000;
      --border: rgba(0, 0, 0, 0.1);
      --border-hover: rgba(0, 0, 0, 0.2);
      --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
      --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
      --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
      --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
      --gradient-brand: linear-gradient(135deg, var(--brand) 0%, var(--brand-hover) 100%);
      --gradient-text: linear-gradient(135deg, var(--text) 0%, var(--brand-light) 100%);
      --backdrop-blur: saturate(180%) blur(20px);            
       }
           



        /* Cyberpunk Base Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Roboto', sans-serif;
            background: var(--dark);
            color: var(--light);
            overflow-x: hidden;
            min-height: 100vh;
            background-image: 
                radial-gradient(circle at 25% 25%, rgba(255, 0, 64, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 75% 75%, rgba(24, 24, 24, 0.15) 0%, transparent 50%);
            background-attachment: fixed;
            justify-content: center;
            align-items: center;
        }

        /* Cyberpunk Scrollbar */
        ::-webkit-scrollbar {
            width: 8px;
            height: 8px;
        }

        ::-webkit-scrollbar-track {
            background: var(--darker);
        }

        ::-webkit-scrollbar-thumb {
            background: var(--primary);
            border-radius: 10px;
        }

        ::-webkit-scrollbar-thumb:hover {
            background: var(--secondary);
        }

        /* Header */
        .header{
            padding: 0;
        }

        .header_left{
            display: flex;
            align-items: center;
            cursor: pointer;
            margin-left: -12px;
        }

        .header_logo{
            align-items: center;
            justify-content: center;
            margin-bottom: 8px;
            animation: float 15s infinite linear;
        }

        .header_logo img{
            width: 100px;
            height: 100px;
        }

        @keyframes float {
            0% { transform: translateY(0px); }
            50% { transform: translateY(-8px); }
            100% { transform: translateY(4px); }
        }

        .header_left h4{
            font-size: 11px;
            margin-left: -18px;
            margin-bottom: 6px;
            font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
        }
        .header_left span{
            font-size: 1.3rem;
            font-family: 'Times New Roman', Times, serif;
            text-transform: uppercase;
            letter-spacing: 2px;
        }


        /* Login Button */
        .login-buttons {
            position: fixed;
            top: 13px;
            right: 10px;
            z-index: 100;
        }
        .login-btn {
            padding: 15px 40px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 300;
            transition: all 1s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            position: relative;
            overflow: hidden;
            border: none;
            height: 30px;
            width: 100px;
            font-size: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .login-btn-secondary {
            background: var(--glass);
            border: 1px solid rgba(255,255,255,0.1);
            color: var(--text-color);
            text-align: center;
            backdrop-filter: blur(8px);
        }

        .login-btn-secondary:hover {
            background: rgba(0, 255, 242, 0.178);
            border: 1px solid rgba(0, 255, 213, 0.644);
        }

        /* Header Body */
        .header_content{
            /*padding: 180px 5% 100px;**/
            text-align: center;
            position: relative;
            overflow: hidden;
            align-items: center;
            justify-content: center;
        }

        .header_content::before {
            content: '';
            position: absolute;
            width: 700px;
            height: 700px;
            background: radial-gradient( transparent);
            filter: blur(100px);
            top: -50%;
            left: -10%;
            opacity: 0.3;
            animation: gradientMove 15s infinite linear;
        }

        @keyframes gradientMove {
            0% { transform: translate(0,0) rotate(0deg); }
            100% { transform: translate(300px,200px) rotate(360deg); }
        }

        /* Auto Slider */
        .autoslider{
            width: 285px;
            max-width: 100vw;
            height: 180px;
            margin: auto;
            position: relative;
            border: 0.3rem solid var(--extra-light);
            border-radius: 1.3rem;
            box-shadow: 5px 5px 30px rgba(194, 3, 3, 0.849);
            overflow: hidden;
        }

        .autoslider:hover{
            width: 285px;
            max-width: 100vw;
            height: 180px;
            margin: auto;
            position: relative;
            border: 0.3rem solid red;
            border-radius: 1.3rem;
            box-shadow: 0 0 10px #FF0000;
            overflow: hidden;
        }

        .autoslider .sliderlist{
            position: absolute;
            width: max-content;
            height: 100%;
            left: 0;
            top: 0;
            display: flex;
            transition: 1s;
        }

        .autoslider .sliderlist img{
            width: 285px;
            max-width: 100vw;
            height: 100%;
            object-fit: cover;
        }

        .autoslider .sliderbuttons{
            position: absolute;
            top: 45%;
            left: 5%;
            width: 90%;
            display: flex;
            justify-content: space-between;
        }

        .autoslider .sliderbuttons button{
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background-color: #fff5;
            color: #fff;
            border: none;
            font-family: monospace;
            font-weight: bold;
        }

        .autoslider .sliderdots{
            position: absolute;
            bottom: 10px;
            left: 0;
            color: #fff;
            width: 100%;
            margin: 0;
            padding: 0;
            display: flex;
            justify-content: center;
        }

        .autoslider .sliderdots li{
            list-style: none;
            width: 10px;
            height: 10px;
            background-color: #fff;
            margin: 10px;
            border-radius: 20px;
            transition: 0.5s;
        }

        .autoslider .sliderdots li.slideractive{
            width: 30px;
        }
        
        /* bot section */
        h2 {
            text-align: center;
            margin-top: 20px;
            font-size: clamp(1rem, 4vw, 3rem);
            background: var(--gradient);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
        }

        h3 {
            text-align: center;
            font-size: clamp(1.4rem, 4vw, 3rem);
            background: var(--gradient);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
            animation: logoPulse 4s ease-in-out infinite;
        }

        @keyframes logoPulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.05); }
        }


.bot_section{
            align-items: center;
            justify-content: center;
            bottom: 10px;
            display: flex;
            gap: 19px;
            width: 400px;
            height: 130px;
            margin: auto;
        }

         @keyframes logoPulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.05); }
        }


.main_bot {
 margin-top: 6px;
  background: rgba(0, 0, 0, 0.5);
  padding: 10px;
  width: 100px;
  height: 100px;
  color : #444;
  display: block;
  border-radius: 19px;
  box-shadow: 0 0 2px #444;
  text-align: center;
  border: 1px solid #444;
  transition: .4s;
}

.main_bot:hover {
  transform: translateY(-5px);
  border: 1px solid #FF0000;
  box-shadow: 0 0 10px #FF0000;
}

.main_bot > h4 {
  font-weight: 600;
  color: rgba(255, 0, 0, 1);
  font-size: 18px;
  padding: 10px;
  transform: translateY(10px);
}

.main_bot > i {
  font-size: 500px;
  font-weight: 700;
}

        
/*=========== COMENT ==============*/

/* Comment */
.comment-section {
      margin: auto;
      padding: 20px;
      max-width: 600px;
      background: var(--glass);
      border: 1px solid #e50914;
      border-radius: 10px;
      box-shadow: 0 0 10px rgba(229, 9, 20, 0.4);
    }

.comment-box {
    background: var(--input-bg);
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 0 25px rgba(236, 72, 153, 0.3);
  }
  input.glow-input,
  textarea.glow-input {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border-radius: 12px;
    border: none;
    background-color: var(--background);
    color: var(--text-color);
    font-size: 1rem;
    box-shadow: inset 0 0 8px rgba(255, 255, 255, 0);
    transition: box-shadow 0.3s ease;
    resize: vertical;
  }

  input.glow-input:focus,
  textarea.glow-input:focus {
    outline: none;
    box-shadow: none;
  }

  button.glow-button {
    background-color: #e50914;
      border: none;
      color: #fff;
      padding: 10px;
      font-size: 14px;
      border-radius: 6px;
      cursor: pointer;
  }

  #commentList {
    margin-top: 25px;
    max-height: 300px;
    overflow-y: auto;
    padding-right: 10px;
  }

  #commentList::-webkit-scrollbar {
    width: 8px;
  }

  #commentList::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 10px;
  }

  #commentList::-webkit-scrollbar-track {
    background: transparent;
  }

  .comment-entry {
    background: #222;
    padding: 12px 15px;
    margin-bottom: 12px;
    border-left: 5px solid var(--primary);
    border-radius: 10px;
    box-shadow: 0 0 8px rgba(139, 92, 246, 0.4);
    animation: fadeInUp 0.7s ease forwards;
    color: white;
    word-wrap: break-word;
  }

  .comment-entry strong {
    color: var(--secondary);
    font-weight: 700;
  }

  @keyframes fadeInUp {
    0% {
      opacity: 0;
      transform: translateY(20px);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  .delete-btn {
    background-color: #dc2626;
    color: white;
    border: none;
    padding: 6px 12px;
    margin-top: 8px;
    border-radius: 8px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }

  .delete-btn:hover {
    background-color: #b91c1c;
  }

  .like-btn {
    background-color: #4ade80;
    color: white;
    border: none;
    padding: 6px 12px;
    margin-top: 8px;
    margin-right: 10px;
    border-radius: 8px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  
  .like-btn:hover {
    background-color: #22c55e;
  }
.contactForm_container{
  position: relative;
  width: 450px;
  background: var(--glass-bg);
  border: 3px solid var(--glass-border);
  margin-top: 3rem;
  padding: 30px;
  margin: auto;
  border-radius: 35px;
}

.contactForm_container h2{
  text-transform: uppercase;
  color: var(--text-color);
  margin-bottom: 1rem;
}
.contactForm_container h2 span{
  color: var(--black-color);
}
.contactForm_container p{
  font-size: var(--small-body);
  margin-bottom: 30px;
}

.footer_bottom{
  text-align: center;
  position: relative;
  width: 100vw;
  margin-top: 20px;
  max-height: 50px;
  padding: var(--space-sm);
  color: var(--accent-color);
  background: none;
}

.footer_bottom p{
    font-size: 13px;
}


/*========= ලොඩින් ඇනිමෙෂන් 💡*/
/*--======== ලෙඩින් ඇනිමෙෂන් ========----*/
#loadingScreen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0a0a0f 0%, #1a1a2e 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    flex-direction: column;
    transition: all 0.8s ease;
}

#loadingScreen.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loading-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
}

.loading-logo > i {
    font-size: 3rem;
    color: #FF0000;
    text-shadow: 0 0 20px rgba(255, 0, 0, 0.5);
   animation: logoSpin 4s linear infinite;
}

.loading-logo > span {
    font-size: 2rem;
    color: #D31616;
    font-weight: 700;
    text-shadow: 0 0 10px rgba(255, 0, 0, 0.34);
}

.loading-bar {
    width: 300px;
    height: 4px;
    background: rgba(255,255,255,0.1);
    border-radius: 2px;
    overflow: hidden;
    margin-bottom: 20px;
}

.loading-progress {
    width: 0;
    height: 100%;
    background: linear-gradient(90deg, gold, #FF0000, #FF0000);
    background-size: 200% 100%;
    border-radius: 2px;
    animation: loadingProgress 4s ease-in-out forwards, gradientShift 2s infinite;
}

.loading-text {
    color: #ccc;
    font-size: 1rem;
    animation: loadingText 2s infinite ease-in-out;
}


/* --- Keyframes --- */
@keyframes logoSpin {
    0%, 100% { transform: translateY(0); }
    50% {transform: translateY(-8px);}
}

@keyframes loadingProgress {
    0% { width: 0%; }
    100% { width: 100%; }
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    100% { background-position: 200% 50%; }
}

@keyframes loadingText {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

/* background ඇනිමෙෂන් 🌝*/
#starfield {
      position: fixed; /* ⬅️ fixed background */
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      overflow: hidden;
      z-index: -1; /* ⬅️ behind content */
    }

    .star {
      position: absolute;
      background: white;
      width: 2px;
      height: 2px;
      border-radius: 50%;
      box-shadow: 0 0 8px white, 0 0 15px white, 0 0 25px #0ff;
      animation: twinkle 4s infinite ease-in-out;
    }

    @keyframes twinkle {
      0%, 100% {
        transform: scale(0.8);
        opacity: 1;
      }
      50% {
        transform: scale(1.5);
        opacity: 1;
    }
}

.clock-buttons{
    position: fixed;
    top: 13px;
    right: 10px;
    z-index: 100;
    border: 1px solid rgba(0, 255, 213, 0.644);
    border-radius: 50px;
    height: 30px;
    width: 100px;
    font-size: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-color);
    font-family: 'Courier New', Courier, monospace;
    text-align: center;
    backdrop-filter: blur(8px);
    background: rgba(0, 255, 242, 0.178);
}


.button-box {
 display: flex;
  background: rgba(0, 0, 0, 0.5);
  padding: 10px;
  width: 100%;
  height: 100px;
  margin-top: 10px;
  gap: 10px;
  margin-left: 10px;
  margin-right: 10px;
  color : #444;
  align-items: center;
  justify-content: center;
  border-radius: 19px;
  box-shadow: 0 0 2px #444;
  text-align: center;
  border: 1px solid #444;
}

.button-box > h4 {
  font-weight: 600;
  color: rgba(255, 0, 0, 1);
  display: block;
  font-size: 18px;
  padding: 10px;
  transform: translateY(10px);
}

.button-box > i {
  font-size: 500px;
  font-weight: 700;
}

.button-box > button {
  margin-top: 50px;
  width: 50%;
  padding: 7px;
  color: red; 
  border-radius: 20px;
  background: none;
  border: 1px solid rgba(255, 0, 0, 1);
  font-size:  16px;
  font-weight: 600;
  transition: .4s;
}

.button-box > button:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 10px #FF0000;
}

.button-box > button > a {
  outline: none;
  text-decoration: none;
  color: rgba(255, 0, 0, 1);
  font-size: 15px;
  font-weight: 600;
  padding: 5px;
}


        .cta-buttons {
            display: flex;
            gap: 1.5rem;
            justify-content: center;
            flex-wrap: wrap;
        }

        .btn {
            padding: 15px 40px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            transition: all 1s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            position: relative;
            overflow: hidden;
            border: none;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .btn-primary {
            background: linear-gradient(45deg, var(--primary), var(--secondary));
            color: white;
            transform: scale(1);
        }

        .btn-primary:hover {
            transform: scale(1.05);
            box-shadow: 0 10px 30px rgba(211, 52, 52, 0.4);
        }

        .btn-secondary {
            background: var(--glass);
            border: 1px solid rgba(255,255,255,0.1);
            color: var(--text-color);
            backdrop-filter: blur(8px);
        }

        .btn-secondary:hover {
            background: rgba(255,255,255,0.1);
        }

        
.content span {
            text-align: center;
            margin-bottom: 1.5px;
            font-size: clamp(3rem, 4vw, 3rem);
            background: var(--gradient);
            line-height: 1.2;
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
        }

            h3 {
            text-align: center;
            margin-bottom: 1px;
            font-size: clamp(2.5rem, 4vw, 3rem);
            background: var(--gradient);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
            animation: logoPulse 4s ease-in-out infinite;
        }


  p{
            font-size: 1.3rem;
            margin-bottom: 1rem;
            opacity: 0;
            transform: translateY(30px);
            animation: textAppear 0.9s 0.4s forwards;
            text-align: center;
        }

        
        @keyframes textAppear {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        
form{
  display: flex;
  flex-direction: column;
  row-gap: 15px;
}
.contactForm_container form .input_group input,
.contactForm_container form .input_group textarea{
  color: var(--text-color);
  font-size: var(--small-body);
  background: var(--glass-bg);
  width: 100%;
  border: none;
  outline: none;
  padding: 17px 20px;
  border-radius: 10px;
  box-shadow: inset 0 10px 30px rgba(0, 0, 0, 0.3);
}
.contactForm_container form .input_group textarea{
  height: 180px;
  resize: none;
}

.wabot-title span{
            font-size: clamp(1.6rem, 4vw, 3rem);
            font-weight: 800;
            background: #fff;
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            margin-right: 4px;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
            animation: textGlow 0.8s ease-in-out infinite;
        }

        @keyframes textGlow {
            0% {
      opacity: 0;
      transform: translateY(20px);
    }
    50% {
      opacity: 1;
      transform: translateY(0);
    }
        }

.wabot-title{
            text-align: start;
            margin-left: 15px;
            font-size: clamp(1rem, 4vw, 3rem);
            background: #fff;
            -webkit-background-clip: text;
            background-clip: text;
            font-weight: 400;
            font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
            color: transparent;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
        }


    /* Section Styling */
    .section {
      padding: 4rem 1.5rem;
      max-width: 1400px;
      margin: 0 auto;
    }

    .section-header {
      text-align: center;
      margin-bottom: 12px;
    }

    .section-title {
      font-family: "Orbitron", sans-serif;
      font-size: clamp(2rem, 4vw, 2.5rem);
      font-weight: 800;
      letter-spacing: 0.5px;
      margin-bottom: 12px;
      background: var(--gradient-text);
      background-clip: text;
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }

    .section-description {
      font-size: 1.125rem;
      color: var(--text-muted);
      max-width: 600px;
      margin: 0 auto;
      line-height: 1.7;
    }

    /* Features Section */
    .features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 2rem;
      margin-top: 0.12rem;
    }

    .feature-card {
      background: var(--panel);
      border: 3px solid var(--border);
      border-radius: 20px;
      text-align: center;
      height: 180px;
      backdrop-filter: blur(2px);
      padding: 7px;
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      position: relative;
      overflow: hidden;
    }

    .feature-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 3px;
      background: var(--gradient-brand);
      transform: scaleX(0);
      transition: transform 0.3s ease;
    }

    .feature-card:hover::before {
      transform: scaleX(1);
    }

    .feature-card:hover {
      transform: translateY(-4px);
      background: var(--panel-hover);
      border-color: var(--border-hover);
      box-shadow: var(--shadow-xl);
    }

    .feature-icon {
      width: 38px;
      height: 38px;
      border-radius: 13px;
      background: var(--gradient-brand);
      display: grid;
      place-items: center;
      font-size: 1rem;
      color: white;
    }

    .feature-card h3 {
      font-size: 1.25rem;
      font-weight: 700;
      margin-bottom: 0.12rem;
      color: var(--text);
    }

    .feature-card p {
      color: var(--text-muted);
      line-height: 1.6;
    }

        /* Contact Section */
    .contact-grid {
      display: flex;
      flex-wrap: wrap;
      gap: 1rem;
      justify-content: center;
      align-items: center;
    }
    
    /* Enhanced Buttons */
    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 0.5rem;
      padding: 0.75rem 1.5rem;
      border: 1px solid transparent;
      border-radius: 12px;
      font-weight: 600;
      font-size: 0.875rem;
      text-decoration: none;
      cursor: pointer;
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      position: relative;
      overflow: hidden;
      white-space: nowrap;
      background: none;
    }

    .btn-primary {
      background: var(--gradient-brand);
      color: white;
      box-shadow: 
        0 4px 12px rgba(0, 0, 0, 0.3),
        0 0 0 1px var(--border);
      font-size: 1rem;
      padding: 1rem 2rem;
      border-radius: 16px;
      font-weight: 700;
      letter-spacing: 0.3px;
    }

    .btn-primary::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), transparent);
      opacity: 0;
      transition: opacity 0.3s ease;
    }

    .btn-primary:hover::before {
      opacity: 1;
    }

    .btn-primary:hover {
      transform: translateY(-2px) scale(1.02);
      box-shadow: 
        0 8px 24px rgba(0, 0, 0, 0.4),
        0 0 0 1px var(--border-hover);
    }

    .btn-primary:active {
      transform: translateY(0) scale(0.98);
    }

    .btn-secondary {
      background: var(--panel);
      color: var(--text);
      border-color: var(--border);
      backdrop-filter: var(--backdrop-blur);
    }

    .btn-secondary:hover {
      background: var(--panel-hover);
      border-color: var(--border-hover);
      transform: translateY(-1px);
      box-shadow: var(--shadow);
    }

    .btn-ghost {
      background: rgba(255, 255, 255, 0.267);
      backdrop-filter: blur(2px);;
      color: var(--text-muted);
      border-color: 3px solid var(--border);
      backdrop-filter: var(--backdrop-blur);
    }

    .btn-ghost:hover {
      background: rgba(255, 255, 255, 0.267);;
      color: var(--text);
      backdrop-filter: blur(2px);
      border-color: 3px solid var(--border-hover);
      transform: translateY(-1px);
    }