@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@400;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Quicksand', sans-serif;
}

/*  og hex color background #7f74e4 or #968cf5*/
body {
    background: #968cf5;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    color: white;
    flex-direction: column;
    background-size: cover;
    background-position: center; 
    background-repeat: no-repeat;  
}

/* particles.js background */
#particles-js {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.center-box { 
    background: rgba(0, 0, 0, 0.178);
    padding: 35px 50px;
    border-radius: 45px;
    text-align: center;
    backdrop-filter: blur(15px);
    box-shadow: 0px 6px 20px rgba(0, 0, 0, 0.4);
    border: 4px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease-in-out;
}

@media screen and (max-width: 600px) {
    .center-box {
      width: 90%;
      padding: 10px;
      font-size: 14px;
    }
  
    .top-menu {
      flex-direction: column;
      align-items: center;
      gap: 2px;
      padding: 8px;
      font-size: 14px;
    }
  
    .top-menu button,
    .top-menu a {
      width: 80%;
      text-align: center;
      padding: 6px 10px;
      font-size: 0;
    }
  
    .top-menu a.menu-button i {
      font-size: 16px;
      margin-right: 0;
    }
  
    .logo a {
      font-size: 14px;
      padding: 4px 8px;
    }
  
    .announcement {
      font-size: 10px;
      padding: 4px 8px;
      text-align: center;
    }
  }
  
/* other */
@media (max-width: 1500px) {
    .center-box {
        padding: 20px 20px;
    }
}

/* phones */
@media (max-width: 480px) {
    .center-box {
        padding: 15px 15px;
    }
}
  
.title {
    font-size: 4rem;
    font-weight: 700;
    margin: 0 0 1.5rem 0;
    color: #fff;
    text-align: center;
    position: relative;
    text-shadow:
        0 0 8px rgba(255, 255, 255, 0.6),
        0 0 20px rgba(255, 255, 255, 0.4),
        0 0 30px rgba(255, 255, 255, 0.3),
        0 0 40px rgba(255, 255, 255, 0.2);
    transition: text-shadow 0.3s ease-in-out;
}

.title:hover {
    text-shadow:
        0 0 12px rgba(255, 255, 255, 0.8),
        0 0 30px rgba(255, 255, 255, 0.6),
        0 0 45px rgba(255, 255, 255, 0.5),
        0 0 60px rgba(255, 255, 255, 0.4);
}

.smalla {
    font-size: 3.5rem;
    font-weight: 700;
    color: #ffffff;
    text-align: center;
    margin-bottom: 20px;
    margin-top: 8px;
    animation: glowing 2.5s ease-in-out infinite;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.8), 0 0 16px rgba(173, 216, 230, 0.6), 0 0 24px rgba(173, 216, 230, 0.4);
}

@keyframes glowing {
    0% {
        text-shadow: 0 0 6px rgba(255, 255, 255, 0.7), 0 0 12px rgba(173, 216, 230, 0.5), 0 0 18px rgba(173, 216, 230, 0.3);
    }
    50% {
        text-shadow: 0 0 12px rgba(255, 255, 255, 0.9), 0 0 20px rgba(173, 216, 230, 0.7), 0 0 30px rgba(173, 216, 230, 0.5);
    }
    100% {
        text-shadow: 0 0 6px rgba(255, 255, 255, 0.7), 0 0 12px rgba(173, 216, 230, 0.5), 0 0 18px rgba(173, 216, 230, 0.3);
    }
}

/* description */
p {
    font-size: 1.2rem;
    color: #ccc;
    margin-bottom: 30px;
}

.app-container {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.app {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.1); 
    padding: 20px;
    border-radius: 35px; 
    width: 150px;
    transition: 0.3s ease-in-out;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4);
    position: relative;
}

.app:hover {
    transform: translateY(-5px) scale(1.1);
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.5);
}

.app img {
    width: 120px;
    height: 120px;
    object-fit: contain;
    margin-bottom: 10px;
    border-radius: 20px;
}

/* app text */
.app span {
    color: white;
    font-weight: 600;
    text-align: center;
}

.app:hover img {
    transform: scale(1.05);
}

.app span {
    color: white;
    font-weight: 600;
    text-align: center;
    font-size: 14px;
    letter-spacing: 0.5px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.app:focus,
.app img:focus {
    outline: none;
    box-shadow: none;
}

button {
    background: rgba(0, 0, 0, 0.05); 
    color: white;
    font-size: 1.1rem;
    padding: 14px 28px;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
    margin: 10px;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

button::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.05);
    border-radius: inherit;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

button::after {
    content: "";
    position: absolute;
    inset: -4px;
    border-radius: inherit;
    border: 2px solid rgba(255, 255, 255, 0.1);
    opacity: 0;
    transition: all 0.3s ease-in-out;
}

button:hover {
    background: rgba(0, 0, 0, 0.1);
    transform: scale(1.05);
}

button:hover::before {
    opacity: 1;
}

button:hover::after {
    opacity: 1;
    border-color: rgba(255, 255, 255, 0.2);
}

button:active {
    transform: scale(1.02);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.iframe-container {
    width: 100%;
    height: 55vh;
    border-radius: 25px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #1212123d;
    margin-top: 0;
}

iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 15px;
}

/* search apps */
#search-bar {
    width: 300px;
    padding: 10px 20px;
    border: 2px solid #ccc;
    border-radius: 25px;
    font-size: 1.2rem;
    outline: none;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    transition: all 0.3s ease;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.2);
    margin-bottom: 10px;
}

#search-bar:focus {
    width: 380px;
    border-color: #7f74e4;
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0px 4px 20px rgba(127, 116, 228, 0.3);
}

#search-bar::placeholder {
    color: #ccc;
    font-weight: 400;
}

/* partners */
.partner img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 25px;
    transition: transform 0.3s ease-in-out, 
                box-shadow 0.3s ease-in-out, 
                filter 0.3s ease-in-out;
    filter: brightness(0.9);
}

.partner img:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    filter: brightness(1);
}

::-webkit-scrollbar {
    display: none;
}
 /* old is #3a458d */
:root {
    --selection-bg: #968cf5; 
}

::selection {
    background: var(--selection-bg);
    color: white;
}

/* browse the internet */ 
#search-web {
    width: 300px;
    padding: 10px 20px;
    border: 2px solid #ccc;
    border-radius: 25px;
    font-size: 1.2rem;
    outline: none;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    transition: all 0.3s ease;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.2);
}

#search-web:focus {
    width: 350px;
    border-color: #007BFF;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.4);
}

#search-web::placeholder {
    color: #ccc;
    font-weight: 400;
}

.search-container {
    margin-bottom: 30px;
}

/* style dropdown */
.styles-section {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}

#style-dropdown {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 1.2rem;
    padding: 10px 20px;
    border: none;
    border-radius: 25px;
    outline: none;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

#style-dropdown:hover {
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0px 6px 18px rgba(0, 0, 0, 0.3);
}

#style-dropdown:focus {
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.4);
}

#style-dropdown option {
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 10px;
    border: none;
    border-bottom: 1px solid #ccc;
}

#style-dropdown option:hover {
    background: rgba(0, 0, 0, 0.6);
}

/* cloak dropdown */
.styles-section {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}

.styles-section {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}

#cloak-dropdown {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 1.2rem;
    padding: 10px 20px;
    border: none;
    border-radius: 25px;
    outline: none;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

#cloak-dropdown:hover {
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0px 6px 18px rgba(0, 0, 0, 0.3);
}

#cloak-dropdown:focus {
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.4);
}

#cloak-dropdown option {
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 10px;
    border: none;
    border-bottom: 1px solid #ccc;
}

#cloak-dropdown option:hover {
    background: rgba(0, 0, 0, 0.6);
}

/* profile */
.profile-button img {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255, 255, 255, 0.4);
    transition: all 0.4s cubic-bezier(0.2, 0, 0.1, 1);
    cursor: pointer;
    box-shadow: 
        0 2px 8px rgba(255, 255, 255, 0.05),
        inset 0 0 0 1px rgba(255, 255, 255, 0.1);
    background-color: rgba(255, 255, 255, 0.05);
    transform-origin: center center;
    will-change: transform, box-shadow, filter;
}

.profile-button img:hover {
    transform: scale(1.15) rotate(2deg);
    box-shadow: 
        0 6px 24px rgba(255, 255, 255, 0.15),
        inset 0 0 0 1px rgba(255, 255, 255, 0.2);
    filter: brightness(1.2) saturate(1.1);
    border-color: rgba(255, 255, 255, 0.6);
}

#profile-pic {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(255, 255, 255, 0.6);
    transition: all 0.5s cubic-bezier(0.2, 0, 0.1, 1);
    box-shadow: 
        0 4px 20px rgba(255, 255, 255, 0.1),
        inset 0 0 0 1px rgba(255, 255, 255, 0.15);
    background-color: rgba(255, 255, 255, 0.08);
}

#profile-pic:hover {
    transform: scale(1.1) rotate(3deg);
    box-shadow: 
        0 8px 32px rgba(255, 255, 255, 0.2),
        inset 0 0 0 1px rgba(255, 255, 255, 0.3);
    filter: brightness(1.25) saturate(1.15);
    border-color: rgba(255, 255, 255, 0.8);
}

#profile {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 12px;
}

 /* loading screen */
#loading-screen {
    position: fixed;
    width: 100%;
    height: 100%;
    background: url(/images/main-bg.png);
    background-color: #968cf5;
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    z-index: 9999;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.5s ease-in-out, visibility 0.5s ease-in-out, transform 0.5s ease-in-out;
    font-family: 'Poppins', sans-serif;
}

.loader {
    display: flex;
    gap: 12px;
    margin-bottom: 24px;
    transition: transform 0.5s ease-in-out;
}

.loader div {
    width: 14px;
    height: 14px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.3);
    animation: float-pulse 1.4s infinite ease-in-out;
}

.loader div:nth-child(1) { animation-delay: 0s; }
.loader div:nth-child(2) { animation-delay: 0.2s; }
.loader div:nth-child(3) { animation-delay: 0.4s; }

@keyframes float-pulse {
    0%, 100% {
        transform: translateY(0) scale(1);
        opacity: 0.7;
    }
    50% {
        transform: translateY(-16px) scale(1.1);
        opacity: 1;
    }
}

.loading-text {
    color: white;
    font-size: 16px;
    font-weight: 300;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    opacity: 0.9;
    animation: text-fade 2s infinite ease-in-out;
}

#loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
    transform: scale(0.98);
}

#loading-screen.hidden .loader,
#loading-screen.hidden .loading-text {
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

/* announcement box */
.center-box#announcement {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    padding: 20px 30px;
    border-radius: 18px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3), 
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
    display: none;
    flex-direction: column;
    min-width: 380px;
    max-width: 650px;
    font-weight: 500;
    z-index: 1001;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
    opacity: 0;
    color: #f0f0f0;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.center-box#announcement.active {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
    display: flex;
    animation: fadeIn 0.4s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translate(-50%, -50%) scale(0.95); }
    to { opacity: 1; transform: translate(-50%, -50%) scale(1); }
}

.center-box#announcement:hover {
    transform: translate(-50%, -50%) scale(1.02);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4), 
                inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.announcement-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-bottom: 15px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.announcement-header h2 {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 0.3px;
    color: #fff;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    background: linear-gradient(90deg, #d3a8f7 0%, #cb8fee 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.announcement-close {
    background: rgba(255, 255, 255, 0.08);
    border: none;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.25s ease;
    font-size: 15px;
    backdrop-filter: blur(5px);
}

.announcement-close:hover {
    background: rgba(255, 65, 65, 0.25);
    color: white;
    transform: scale(1.1);
    box-shadow: 0 0 0 3px rgba(255, 65, 65, 0.15);
}

.announcement-close:active {
    transform: scale(0.95);
    background: rgba(255, 65, 65, 0.4);
}

.announcement-text {
    flex-grow: 1;
    text-align: left;
    padding: 8px 0;
    line-height: 1.6;
    font-size: 1rem;
    opacity: 0.95;
    max-height: 60vh;
    overflow-y: auto;
    padding-right: 10px;
}

/* Scrollbar styling */
.announcement-text::-webkit-scrollbar {
    width: 6px;
}

.announcement-text::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.1);
    border-radius: 3px;
}

.announcement-text::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 3px;
}

.announcement-text::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.3);
}

#overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    z-index: 1000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

#overlay.active {
    opacity: 1;
    pointer-events: all;
}

/* slider */
.toggle-container {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.1rem;
    color: white;
    background: rgba(0, 0, 0, 0.05);
    padding: 12px 24px;
    border-radius: 40px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    width: fit-content;
    margin: 12px auto;
    position: relative;
    overflow: hidden;
}

.toggle-container::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.05);
    border-radius: inherit;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.toggle-container input {
    display: none;
}

.toggle-container .toggle-slider {
    width: 50px; 
    height: 26px; 
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50px; 
    position: relative;
    transition: all 0.3s ease-in-out;
    box-shadow: inset 0 4px 12px rgba(0, 0, 0, 0.2);
}

.toggle-container .toggle-slider::before {
    content: "";
    position: absolute;
    width: 20px;
    height: 20px;
    background: white;
    border-radius: 50%;
    top: 50%;
    left: 3px;
    transform: translateY(-50%);
    transition: all 0.3s ease-in-out;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3); 
}

.toggle-container input:checked + .toggle-slider {
    background: rgba(4, 236, 236, 0.7);
    box-shadow: inset 0 4px 12px rgba(4, 236, 236, 0.4);
}

.toggle-container input:checked + .toggle-slider::before {
    left: 27px; 
    background: rgba(255, 255, 255, 0.9);
}

.toggle-container:hover {
    background: rgba(0, 0, 0, 0.08);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.toggle-container:hover::before {
    opacity: 1;
}

.version-box {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background: rgba(30, 30, 30, 0.473);
    color: #fff;
    padding: 8px 14px;
    border-radius: 12px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    transform: translateY(100px);
    opacity: 0;
    transition: all 0.6s ease;
  }
  
  .version-box.show {
    transform: translateY(0);
    opacity: 1;
  }
  
  #version-icon {
    font-size: 16px;
    opacity: 0;
    transform: scale(0.5);
    transition: all 0.4s ease;
  }
  
  #version-icon.bounce-in {
    opacity: 1;
    transform: scale(1.2);
    animation: bounceIcon 0.6s ease forwards;
  }
  
  @keyframes bounceIcon {
    0%   { transform: scale(0.5); }
    60%  { transform: scale(1.3); }
    80%  { transform: scale(0.9); }
    100% { transform: scale(1); }
  }

  /* tab styling */
  .tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 24px;
    gap: 8px;
}

.tab {
    padding: 12px 24px;
    cursor: pointer;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
    border: none;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    box-shadow: 
        0 2px 4px rgba(0, 0, 0, 0.1),
        inset 0 1px 1px rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 1;
}

.tab::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(211, 119, 206, 0.3) 0%, rgba(150, 80, 200, 0.3) 100%);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.tab:hover {
    color: white;
    transform: translateY(-2px);
    box-shadow: 
        0 6px 12px rgba(0, 0, 0, 0.15),
        inset 0 1px 1px rgba(255, 255, 255, 0.15);
}

.tab:hover::before {
    opacity: 1;
}

.tab.active {
    color: white;
    border-radius: 15px;
    background: linear-gradient(135deg, rgba(211, 119, 206, 0.4) 0%, rgba(150, 80, 200, 0.4) 100%);
    box-shadow: 
        0 4px 8px rgba(211, 119, 206, 0.3),
        inset 0 1px 1px rgba(255, 255, 255, 0.2);
}

.tab.active::before {
    opacity: 1;
}

.tab:active {
    transform: translateY(0);
    transition-duration: 0.1s;
}

.tab-content {
    display: none;
    opacity: 0;
    transform: translateY(8px);
    transition: 
        opacity 0.4s cubic-bezier(0.33, 1, 0.68, 1),
        transform 0.4s cubic-bezier(0.33, 1, 0.68, 1);
}

.active-tab-content {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.fade-out {
    opacity: 0;
    transform: translateY(8px);
    transition: 
        opacity 0.3s cubic-bezier(0.32, 0, 0.67, 0),
        transform 0.3s cubic-bezier(0.32, 0, 0.67, 0);
}

/* fr a email link */
a.email-link {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    color: black;
    position: relative;
    padding: 8px 20px;
    border-radius: 15px;
    font-size: 14px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
    transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    font-weight: bold;
    overflow: hidden;
  }
  
  a.email-link::before {
    content: '\2709';
    margin-right: 8px;
    font-size: 16px;
  }
  
  a.email-link::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.25) 40%, rgba(255, 255, 255, 0) 80%);
    filter: blur(10px);
    border-radius: 15px;
    z-index: -1;
    pointer-events: none;
  }
  
  a.email-link:hover {
    color: purple;
    background: rgba(216, 191, 216, 0.4);
    transform: scale(1.05);
    box-shadow: 0 0 15px rgba(216, 191, 216, 0.4);
  }

  .goofy-ass-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background-color: #2222228c;
    color: #fff;
    font-size: 0.65rem;
    padding: 2px 5px;
    border-radius: 10px;
    border: 1px solid #444;
    font-weight: 500;
    margin-bottom: 3px;
}

.goofy-ass-badge i {
    font-size: 0.7rem;
    color: #b438ee;
}

.ad-left, .ad-right {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: 0px 6px 20px rgba(0, 0, 0, 0.4);
    border: 4px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 10px;
    z-index: 1000;
    width: 180px; 
    height: 600px;
  }

  .ad-left {
    left: 15px;
  }

  .ad-right {
    right: 15px;
  }

  @media (max-width: 1500px) {
    .ad-left, .ad-right {
      margin: 20px auto;
      max-width: 130px;
      width: 130px;
      height: 500px;
      max-height: 500px;
    }
  }

  .social-box {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background: rgba(30, 30, 30, 0.473);
    color: #fff;
    padding: 8px 14px;
    border-radius: 12px;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    transform: translateY(100px);
    opacity: 0;
    transition: all 0.6s ease;
    cursor: pointer;
    text-decoration: none;
}

.social-box.show {
    transform: translateY(0);
    opacity: 1;
}

#social-icon {
    font-size: 16px;
    color: #7289da;
    opacity: 0;
    transform: scale(0.5);
    transition: all 0.4s ease;
}

#social-icon.bounce-in {
    opacity: 1;
    transform: scale(1.2);
    animation: bounceIcon 0.6s ease forwards;
}

@keyframes bounceIcon {
    0%   { transform: scale(0.5); }
    60%  { transform: scale(1.3); }
    80%  { transform: scale(0.9); }
    100% { transform: scale(1); }
}

.social-box:hover #social-icon {
    color: #6076db;
}

/* profile */
#signup-username, 
#signup-password,
#signup-confirm-password,
#login-username,
#login-password {
    width: 300px;
    padding: 12px 20px;
    margin: 8px auto;
    border: 2px solid #7f74e4;
    border-radius: 25px;
    font-size: 1rem;
    outline: none;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    transition: all 0.3s ease;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.2);
    display: block;
}

#signup-username::placeholder,
#signup-password::placeholder,
#signup-confirm-password::placeholder,
#login-username::placeholder,
#login-password::placeholder {
    color: #b8b5ff;
    font-weight: 400;
}

#signup-username:focus,
#signup-password:focus,
#signup-confirm-password:focus,
#login-username:focus,
#login-password:focus {
    border-color: #a39de8;
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0px 4px 20px rgba(127, 116, 228, 0.3);
}

#login-form,
#signup-form {
    padding: 25px;
    border-radius: 25px;
    width: fit-content;
    margin: 20px auto;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(8px);
}

#login-form h2,
#signup-form h2 {
    color: #fff;
    margin-bottom: 20px;
    font-weight: 500;
}

/* panic input */
#panic-website {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 1.2rem;
    padding: 10px 20px;
    border: none;
    border-radius: 25px;
    outline: none;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    width: 300px; 
    margin: 20px 0;
}

#panic-website::placeholder {
    color: rgba(255, 255, 255, 0.6);
    font-style: italic;
}

#panic-website:hover {
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0px 6px 18px rgba(0, 0, 0, 0.3);
}

#panic-website:focus {
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.4);
    background: rgba(255, 255, 255, 0.15);
}