:root {
  --background-gradient-start: #0b0b1c;
  --background-gradient-end: #080d4d;
  --text-color: white;
  --hover-border-color: #ffffff;
  --navbar-bg-color: rgba(0, 0, 0, 0.3);
  --button-bg-color: rgba(10, 10, 10, 0.3);
  --icon-color: #a3a3a3;
  --search-placeholder: #bbb;
  --tooltip-bg: rgba(0, 0, 0, 0.5);
  --battery-border: #fff;
  --battery-full: #4caf50;
  --battery-high: #ffeb3b;
  --battery-medium: #ffa500;
  --battery-low: #ff4d4d;
}

[data-theme="dark"] {
  --background-gradient-start: #1e1e1e;
  --background-gradient-end: #101010;
  --text-color: #ffffff;
  --hover-border-color: #ffffff;
}

[data-theme="light"] {
  --background-gradient-start: #e6e6e6;
  --background-gradient-end: #a7a7a7;
  --text-color: #333333;
  --hover-border-color: #272727;
  --navbar-bg-color: rgba(255, 255, 255, 0.3);
  --button-bg-color: rgba(255, 255, 255, 0.3);
  --icon-color: #666666;
  --search-placeholder: #888;
  --tooltip-bg: rgba(255, 255, 255, 0.7);
  --battery-border: #333;
}

[data-theme="shamrock"] {
  --background-gradient-start: #0d1b1e;
  --background-gradient-end: #1b3a36;
  --text-color: #e8f4f2;
  --hover-border-color: #5cb85c;
}

[data-theme="amethyst"] {
  --background-gradient-start: #2d1b3d;
  --background-gradient-end: #4a2b6d;
  --text-color: #e6e6fa;
  --hover-border-color: #b399d4;
}

[data-theme="pinecone"] {
  --background-gradient-start: #0f2027;
  --background-gradient-end: #2c5364;
  --text-color: #e0f7fa;
  --hover-border-color: #4fc3f7;
}



[data-theme="szvy"] {
  --background-gradient-start: #250307;
  --background-gradient-end: #300410;
  --text-color: #f5f6fa;
  --hover-border-color: #710d22;
  --navbar-bg-color:#34060d;
  --button-bg-color: #34060d;
  --icon-color: #f359a1;
}

[data-theme="bixl"] {
  --background-gradient-start: #000;
  --background-gradient-end: #000000;
  --text-color: #f5f6fa;
  --hover-border-color: #fff;
}


[data-theme="uniub"] {
  --background-gradient-start: rgb(27, 13, 41)  ;
  --background-gradient-end: rgb(11, 5, 15)  ;
  --text-color: #f5f6fa;
  --navbar-bg-color: #1b0c289c;
  --hover-border-color: rgb(180, 100, 230);
}

[data-theme="ruby"] {
  --background-gradient-start: #1C1C1C;
  --background-gradient-end: #1C1C1C;
  --text-color: #EA4747;
  --hover-border-color: #EA4747;
  --navbar-bg-color:#1f1f1f;
  --icon-color: #c74343;
  --button-bg-color: #1f1f1f;
}


[data-theme="froggot1"] {
  --background-gradient-start: #0e0e0e;
  --background-gradient-end: #1a1a1a;
  --text-color: #f5f6fa;
  --hover-border-color: #00ff9d;
}

[data-theme="pablocp"] {
  --background-gradient-start: #0368ae;
  --background-gradient-end: #153f67;
  --text-color: #FAD7B5;
  --hover-border-color: #FAD7B5;
  --navbar-bg-color: rgba(46, 46, 46, 0.7);
  --button-bg-color: rgba(46, 46, 46, 0.5);
  --icon-color: #B0B0B0;
  --search-placeholder: #A0A5AA;
}



[data-theme="sunset"] {
  --background-gradient-start: #2c3e50;
  --background-gradient-end: #e74c3c;
  --text-color: #f9f9f9;
  --hover-border-color: #ffffff;
}

[data-theme="ocean-breeze"] {
  --background-gradient-start: #1a2980;
  --background-gradient-end: #26d0ce;
  --text-color: #e0f7ff;
  --hover-border-color: #2e42b5;
}

[data-theme="midnight"] {
  --background-gradient-start: #0f0c29;
  --background-gradient-end: #302b63;
  --text-color: #d1d1ff;
  --hover-border-color: #6a5acd;
}

[data-theme="desert"] {
  --background-gradient-start: #b36a5e;
  --background-gradient-end: #8c5247;
  --text-color: #fff0ed;
  --navbar-bg-color: rgba(179, 106, 94, 0.6);
  --button-bg-color: rgba(179, 106, 94, 0.6);
  --icon-color: #f0d8d4;
  --search-placeholder: #e0c8c4;
  --tooltip-bg: rgba(140, 82, 71, 0.8);
  --battery-border: #f0d8d4;
  --hover-border-color: rgb(146, 77, 65);
}

[data-theme="teto"] {
  --background-gradient-start: #14142b;
  --background-gradient-end: #14142b;
  --text-color: #e63946;
  --hover-border-color: #ff0022;
    --navbar-bg-color: rgba(10, 10, 25, 0.4);
  --button-bg-color: rgba(10, 10, 25, 0.4);
    --icon-color: #cf2130;
  --tooltip-bg: rgba(10, 10, 25, 0.4);
  --battery-border: #3d3d5b;
}


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background: linear-gradient(to bottom, var(--background-gradient-start), var(--background-gradient-end));
  background-size: cover;
  background-attachment: fixed;
  background-repeat: no-repeat;
  margin: 0;
  cursor: url('cur.cur'), auto;
  min-height: 100%;
  font-size: 16px;
  display: flex;
  overflow-x: hidden;

  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  overflow-y: auto;
  transition: all 0.2s ease-in-out;
}

a:hover, button:hover, select:hover, select:active, text:hover, label:hover {
  cursor: url('blue.cur'), auto;
}

#particles-js{
  width: 100%;
  height: 100%;
  background-position: 50% 50%;
  position: fixed;
  top: 0px;
  z-index:-1;
}

#roddy {
  position: fixed;
  text-align: center;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -55%);
  width: 80%;
  max-width: 1000px;
  height: 400px;
  padding: 100px;
  border-radius: 35px;
  color: var(--text-color);
  line-height: 1.8;
}

#roddy::-webkit-scrollbar {
  display: none;
}

#roddy img {
  margin: 10px;
  border-radius: 60px;
  width: 65px;
  height: 65px;
  object-fit: cover;
  transition: transform 0.4s cubic-bezier(0.25, 0.1, 0.25, 1), box-shadow 0.4s ease;
}

#roddy img:hover {
  transform: scale(1.315);
  box-shadow: 0 0 0 4px var(--hover-border-color);
}

.header {
  background-color: #333;
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--button-bg-color);
  text-decoration: none;
  transition: transform 0.3s ease-in-out, text-shadow 0.3s ease-in-out;
}

.logo:hover {
  transform: scale(1.3);
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  background-color: var(--navbar-bg-color);    
  backdrop-filter: blur(3px);
  position: fixed;
  border-radius: 20px;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9999;
  font-family: 'notitle';
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--text-color);
  text-decoration: none;
  transition: transform 0.3s ease-in-out, text-shadow 0.3s ease-in-out;
  width: 50%;
  max-height: 57px;
  min-width: 350px;
  max-width: 810px;
}


@media screen and (max-width: 500px) {
  .navbar {
    width: 90%;
    font-size: 1.2rem;
    justify-content: center;
  }
}

.start {
  border: none;
  background-color: var(--button-bg-color);    
  border-radius: 15px;
  color: var(--text-color);
  text-align: center;
  padding: 12px 50px;
  backdrop-filter: blur(3px);
  margin: 3px;
  transition: 0.3s;
}

.start:hover{
  box-shadow: 0 0 0 4px var(--hover-border-color);
}

button {
  cursor: pointer;
  border: none;
  background-color: var(--button-bg-color);    
  border-radius: 20px;
  color: var(--text-color);
  padding: 15px 20px;
  margin: 3px;
  transition: 0.3s;
}

#icons{
  position: absolute;
  left: 8%;
  }
  
  .navbar .logo {
    font-size: 30px;
    font-weight: bold;
    display: flex;
    align-items: center;
    color: var(--text-color);
  }
  .navbar .logo i {
    margin-right: 8px;
    margin-left: 8px;
    color: var(--icon-color);
  }
  
  #logo {
    transform: scale(1.25);
          border-radius: 10px;
  }

  .navbar .nav-right {
    display: flex;
    align-items: center;
    margin-right: 17px; 
  }
  
  .navbar .nav-right a {
    color: var(--text-color);
    text-decoration: none;
    margin-left: 20px;
    display: flex;
    align-items: center;
    font-size: 18px;
    transition: all 0.2s ease-in-out;
  }
  
  .navbar .nav-right a i {
    margin-right: 5px;
  }
  
  .navbar .nav-right a:hover {
    color: var(--icon-color);
  }
  
  #logo {
    width: 30px;
    height: 30px;
    vertical-align: middle;
    position: relative;
    top: -2.7px;
  }
  
  
  .navbar .logo i, .navbar .nav-right a i {
    font-size: 24px;
  }
  
  h5 {
    font-size: 15px;
  }

  .navbar button {
    margin: 0 auto;
    top: -9%;
    float: right;
    padding: 10px 12px;
    position: relative;
    background-color: transparent;
    border: none;
    color: var(--text-color);
    transition: 0.3s;
  }

  #note {
    max-width: 1900px;
    width: calc(100vw - 15px);
    height: 100vh;
    text-align: center;
    border-radius: 0;
    color: var(--text-color);
    padding: 90px;
    line-height: 1.8;
  }
  
  
  
#note img {
  margin: 9px;
  width: 165px;
  height: 165px;
  border-radius: 20px;
  backdrop-filter: brightness(0.70);
  object-fit: cover;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.35s ease, filter 0.35s ease;
  position: relative;
  z-index: 1;
}

#note img:hover {
  transform: scale(1.35);
  box-shadow: 0 0 0 4px var(--hover-border-color);
  filter: brightness(0.70);
  z-index: 10;
}



  
  .search-container {
    width: 250px;
    margin: 3px auto;
}

#searchInput {
    border: none;
    background-color: var(--button-bg-color);
    border-radius: 10px;
    color: var(--text-color);
    text-align: center;
    padding: 18px 30px;
    width: 100%;
    font-size: 1rem;
    height: 50px;
    transition: 0.3s;
}

#searchInput:hover {
    transform: scale(1.02);
    box-shadow: 0 0 0 3px var(--hover-border-color);
}

  .power-indicator {
    position: fixed;
    top: 20px;
    background-color: var(--navbar-bg-color);    
    backdrop-filter: blur(3px);
    color: var(--text-color);
    padding: 10px 20px;
    border-radius: 12px;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 9999;
    font-family: sans-serif;
  }
  

  .battery-container {
    width: 60px;
    height: 20px;
    border: 2px solid var(--battery-border);
    border-radius: 5px;
    position: relative;
    overflow: hidden;
  }
  
  .battery-bar {
    height: 100%;
    background-color: var(--battery-full); 
    width: 0%;  
  }
  
  .power-indicator.low {
    color: var(--battery-low); 
  }
  
  .power-indicator.medium {
    color: var(--battery-medium); 
  }
  
  .power-indicator.high {
    color: var(--battery-high);
  }
  
  .power-indicator.full {
    color: var(--battery-full); 
  }
  
  #power-text {
    font-size: 14px;
    font-weight: bold;
  }

  a {
    text-decoration: none;
  }

  .tooltip {
    position: absolute;
    background: var(--tooltip-bg);
    color: var(--text-color);
    padding: 5px 5px;
    border-radius: 13px;
    font-size: 14px;
    white-space: nowrap;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.2s ease-in-out, transform 0.1s ease-in-out;
    transform: translateY(5px);
    z-index: 9999;
    text-transform: capitalize;
    backdrop-filter: blur(3px);
  }
  
  .tooltip.show {
    opacity: 1;
    transform: translateY(0);
  }

  .embed-container {
    width: 75vw;
    height: 70vh;
    border-top-left-radius: 10px;
    right: 160px;
    border-top-right-radius: 10px;
    overflow: hidden;
    top: 80px;
    position: relative;
    z-index: 2;
  }
  
  .embed-container iframe {
    width: 100%;
    height: 100%;
    border: none;
  }
  
  .section {
    margin: 0 auto;
    right: 160px;
    top: 80px;
    width: 75vw;
    height: 4.4vh;
    background-color: var(--navbar-bg-color);    
    backdrop-filter: blur(3px);
    color: var(--text-color);
    position: relative;
    z-index: 2;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
  }
  
  .section button {
    margin: 0 auto;
    top: -9%;
    float: right;
    padding: 10px 10px;
    position: relative;
    background-color: transparent;
    border: none;
    color: var(--text-color);
    transition: 0.3s;
  }
  #mexigyatt {
    width: 40vw;
    height: auto;
    object-fit: contain; 
}
  
  .section button #mexigyatt {
    width: 1.5vw;
    height: 3vh;
  }
  
  
  .section button:hover {
    color: var(--icon-color);
  }

  #adthing {
    position: fixed;
    top: 8.5vh;
    right: 1.5vw;
    backdrop-filter: blur(3px);
    background-color: var(--button-bg-color);
    text-align: center;
    overflow: hidden;
    width: clamp(200px, 25vw, 300px);
    height: 730px;
    max-height: 80vh;
    border-radius: 10px;
    color: var(--text-color);
    padding: 20px;
    line-height: 1.8;
    box-sizing: border-box;
  }
  
  
  #whysofeinious-button,
  #refreshBtn,
  #fullscreenBtn,
  #notesBtn {
    font-size: 1.2rem;
    padding: 10px 15px;
    border: none;
    flex-shrink: 0;
  }

  #notez {
    position: absolute;
    top: 0;
    left: 0;
    transform: none;
    width: 100vw;
    height: 100vh;
    text-align: center;
    overflow: auto; 
    border-radius: 0;
    color: var(--text-color);
    padding: 250px;
    line-height: 1.8;
  }

  #searchInput {
    color: var(--text-color);
    border: none;
    padding: 5px 8px;
    width: 100%;
    border-radius: 20px;
    text-align: center;
    transition: 0.3s;
  }
  
  #uv-address {
    border: none;
    background-color: var(--button-bg-color);    
    border-radius: 15px;
    color: var(--text-color);
    text-align: center;
    padding: 12px 70px;
    backdrop-filter: blur(3px);
    margin: 3px;
    transition: 0.3s;
  }
  
  #uv-address:hover {
    box-shadow: 0 0 0 4px var(--hover-border-color);  
  }
  
  #uv-address:focus {
    border-color: white;
    outline: none;
  }
  
  #searchInput::placeholder, #uv-address::placeholder {
    color: var(--text-color);
  }
  
  #searchInput:focus {
    outline: none;
    transform: scale(1.2);
  }

  #searchInput:hover {
    outline: none;
    transform: scale(1.2);
  }
  

  .index {
    position: fixed;
    top: 60px;
    left: 0;
    width: 100%;
    height: calc(100% - 127px);
    border: none;
    z-index: 1;
  }

  select {
    cursor: pointer;
    border: none;
    background-color: var(--button-bg-color);    
    border-radius: 20px;
    color: var(--text-color);
    padding: 15px 20px;
    margin: 3px;
    transition: 0.3s;
  }

  .profiles {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--button-bg-color);
    text-decoration: none;
    transition: transform 0.3s ease-in-out, text-shadow 0.3s ease-in-out;
  }

  .navbar .profiles {
      font-size: 30px;
      font-weight: bold;
      display: flex;
      align-items: center;
      color: var(--text-color);
    }
    .navbar .profiles i {
      margin-right: 8px;
      margin-left: 8px;
      color: var(--icon-color);
    }


  
    #profiles {
      transform: scale(1.20);
    }
  #profiles {
      width: 30px;
      height: 30px;
      border-radius: 70px;
      top: -2px;
    }

  .navbar .profiles i, .navbar .nav-right a i {
      font-size: 24px;
    }
  


#roddypoor {
  position: absolute;
  text-align: center;
  top: 15%;
  left: 50%;
  overflow: clip;
  transform: translateX(-50%);
  width: 80%;
  max-width: 2000px;
  height: 900px;
  border-radius: 35px;
      color: var(--text-color);
  padding: 125px;
  line-height: 1.8;
}
#roddypoor img {
  margin: 5px;
  width:  125px;
  height: 125px;
  border-radius: 20px;
  backdrop-filter: brightness(0.70);
  object-fit: cover;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.35s ease, filter 0.35s ease;
  position: relative;
  z-index: 1;
}
#roddypoor img:hover {
    transform: scale(1.35);
  box-shadow: 0 0 0 4px var(--hover-border-color);
  filter: brightness(0.70);
  z-index: 10;
 }