* {
 margin: 0;
 padding: 0;
 box-sizing: border-box;
}
html {
 scroll-behavior: smooth;
}
body {
 font-family: "Open Sans", Arial, sans-serif;
 background: #0a0a0a;
 color: #fff;
 min-height: 100vh;
 overflow-x: hidden;
 position: relative;
}
.blob-container {
 position: fixed;
 width: 100%;
 height: 100%;
 z-index: -1;
 overflow: hidden;
}
.blob {
 position: absolute;
 border-radius: 50%;
 filter: blur(60px);
 opacity: 0.2;
}
.blob-1 {
 width: 400px;
 height: 400px;
 background: #8a2be2;
 top: 10%;
 left: 5%;
 animation: float 15s infinite ease-in-out;
}
.blob-2 {
 width: 300px;
 height: 300px;
 background: #8a2be2;
 bottom: 55%;
 right: 10%;
 animation: float 12s infinite ease-in-out reverse;
}
.blob-3 {
 width: 200px;
 height: 200px;
 background: #8a2be2;
 top: 60%;
 right: 20%;
 animation: float 10s infinite ease-in-out;
}
@keyframes float {
 0%,
 100% {
  transform: translate(0, 0);
 }
 50% {
  transform: translate(50px, 50px);
 }
}
.container {
 display: flex;
 justify-content: center;
 align-items: center;
 padding: 2rem;
 min-height: calc(100vh - 80px);
}
.glass {
 background: rgba(20, 20, 20, 0.4);
 backdrop-filter: blur(15px);
 -webkit-backdrop-filter: blur(15px);
 border-radius: 15px;
 border: 1px solid rgba(138, 43, 226, 0.2);
 box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
 transition: all 0.3s ease;
}
.glass:hover {
 border-color: rgba(138, 43, 226, 0.4);
 box-shadow: 0 8px 32px rgba(138, 43, 226, 0.1);
}
.settings-content {
 width: 100%;
 max-width: 900px;
 padding: 2rem;
}
.settings-content h1 {
 font-size: 2.2rem;
 margin-bottom: 1.5rem;
 color: #8a2be2;
 text-shadow: 0 0 10px rgba(138, 43, 226, 0.3);
 text-align: center;
}
.settings-section {
 padding: 1.5rem;
 margin-bottom: 1.5rem;
}
.settings-section h2 {
 font-size: 1.5rem;
 margin-bottom: 1.5rem;
 color: #8a2be2;
 position: relative;
 padding-bottom: 0.5rem;
}
.settings-section h2::after {
 content: "";
 position: absolute;
 bottom: 0;
 left: 0;
 width: 50px;
 height: 2px;
 background: #8a2be2;
 border-radius: 2px;
}
.settings-section h3 {
 font-size: 1.2rem;
 margin: 1.5rem 0 1rem;
 color: #8a2be2;
}
.settings-section label {
 display: block;
 margin-bottom: 0.5rem;
 color: #ddd;
 font-weight: 500;
}
.settings-section input {
 width: 100%;
 padding: 0.75rem;
 margin-bottom: 1rem;
 border-radius: 8px;
 border: none;
 background: rgba(255, 255, 255, 0.1);
 color: #fff;
 transition: all 0.3s;
}
.settings-section input:focus {
 outline: none;
 box-shadow: 0 0 0 2px rgba(138, 43, 226, 0.5);
 background: rgba(255, 255, 255, 0.15);
}
.settings-section input::placeholder {
 color: #aaa;
}
.api-docs-link {
 color: #2b2ee2;
 text-decoration: none;
 transition: all 0.3s;
}
.api-docs-link:hover {
 text-decoration: underline;
 text-shadow: 0 0 8px rgba(43, 70, 226, 0.4);
}
.api-keys-table {
 width: 100%;
 border-collapse: collapse;
 margin: 1.5rem 0;
 background: rgba(30, 30, 30, 0.3);
 border-radius: 10px;
 overflow: hidden;
}
.api-keys-table th,
.api-keys-table td {
 padding: 12px 15px;
 text-align: left;
 border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.api-keys-table th {
 background: rgba(138, 43, 226, 0.2);
 color: #8a2be2;
 font-weight: 600;
}
.api-keys-table tr:hover {
 background: rgba(138, 43, 226, 0.05);
}
.api-key-container {
 width: 100%;
 max-width: 700px;
 padding: 2rem;
 text-align: center;
}
.api-key-header {
 margin-bottom: 2rem;
}
.api-key-header i {
 font-size: 2.5rem;
 color: #8a2be2;
 margin-bottom: 1rem;
 text-shadow: 0 0 10px rgba(138, 43, 226, 0.3);
}
.api-key-header h1 {
 font-size: 1.8rem;
 margin-bottom: 0.5rem;
 color: #fff;
 text-shadow: 0 0 10px rgba(138, 43, 226, 0.3);
}
.api-key-alert {
 padding: 1.5rem;
 margin-bottom: 2rem;
 text-align: left;
 position: relative;
}
.alert-icon {
 position: absolute;
 top: -15px;
 left: 20px;
 background: #0a0a0a;
 padding: 0 10px;
}
.alert-icon i {
 color: #ff9800;
 font-size: 1.5rem;
}
.alert-message {
 margin: 0.5rem 0 1.5rem;
 color: #ff9800;
 font-size: 0.95rem;
}
.api-key-display {
 display: flex;
 align-items: center;
 margin: 1.5rem 0;
 padding: 1rem;
 background: rgba(30, 30, 30, 0.5);
 border-radius: 8px;
}
#api-key {
 flex-grow: 1;
 word-break: break-all;
 color: #8a2be2;
 font-size: 0.9rem;
 padding: 0.5rem;
}
.actions-cell {
 display: flex;
 gap: 0.5rem;
}
.inline-form {
 display: inline-block;
 margin: 0;
}
.no-keys-message {
 color: #aaa;
 font-style: italic;
 text-align: center;
 padding: 1rem;
}
.btn {
 padding: 0.75rem 1.5rem;
 background: #8a2be2;
 color: #fff;
 border: none;
 border-radius: 8px;
 cursor: pointer;
 transition: all 0.3s;
 font-weight: 600;
 box-shadow: 0 4px 15px rgba(138, 43, 226, 0.3);
}
.btn:hover {
 background: #7b1fa2;
 transform: translateY(-2px);
 box-shadow: 0 6px 20px rgba(138, 43, 226, 0.4);
}
.btn-small {
 padding: 0.5rem 1rem;
 font-size: 0.85rem;
}
.btn-reset {
 background: rgba(33, 150, 243, 0.8);
 box-shadow: 0 4px 15px rgba(33, 150, 243, 0.2);
}
.btn-reset:hover {
 background: rgba(25, 118, 210, 0.8);
}
.btn-danger {
 background: rgba(244, 67, 54, 0.8);
 box-shadow: 0 4px 15px rgba(244, 67, 54, 0.2);
}
.btn-danger:hover {
 background: rgba(198, 40, 40, 0.8);
}
.btn-generate {
 margin-top: 0.5rem;
}
.btn-delete-account {
 background: rgba(244, 67, 54, 0.8);
 box-shadow: 0 4px 15px rgba(244, 67, 54, 0.3);
 width: 100%;
 padding: 1rem;
 font-size: 1.1rem;
}
.btn-delete-account:hover {
 background: rgba(198, 40, 40, 0.8);
 transform: translateY(-2px);
 box-shadow: 0 6px 20px rgba(244, 67, 54, 0.4);
}
.btn-copy {
 margin-left: 1rem;
 padding: 0.6rem 1rem;
 white-space: nowrap;
 display: flex;
 align-items: center;
 gap: 0.5rem;
}
.btn-copy i {
 font-size: 0.9rem;
}
.btn-back {
 display: inline-flex;
 align-items: center;
 gap: 0.5rem;
 padding: 0.8rem 1.5rem;
 color: #fff;
 text-decoration: none;
 border-radius: 8px;
 transition: all 0.3s;
}
.btn-back:hover {
 background: rgba(132, 57, 202, 0.4);
 transform: translateY(-2px);
}
.api-key-footer {
 display: flex;
 align-items: center;
 gap: 0.5rem;
 color: #8a2be2;
 font-size: 0.9rem;
 margin-top: 1.5rem;
}
.api-key-footer i {
 font-size: 1rem;
}
.generate-form {
 margin-top: 1.5rem;
}
.danger-zone {
 border: 1px solid rgba(244, 67, 54, 0.3);
 animation: pulse 2s infinite;
}
.danger-zone h2 {
 color: #f44336;
}
.danger-zone h2::after {
 background: #f44336;
}
.reset-form {
 width: 100%;
 max-width: 450px;
 padding: 2.5rem;
 text-align: center;
}
.reset-header {
 margin-bottom: 2rem;
}
.reset-header i {
 font-size: 2.5rem;
 color: #8a2be2;
 margin-bottom: 1rem;
 text-shadow: 0 0 10px rgba(138, 43, 226, 0.3);
}
.reset-header h1 {
 font-size: 1.8rem;
 margin-bottom: 0.5rem;
 color: #fff;
}
.password-reset-container {
 width: 100%;
 max-width: 450px;
 padding: 2rem;
 text-align: center;
}
.password-reset-header {
 margin-bottom: 2rem;
}
.password-reset-header i {
 font-size: 2.5rem;
 color: #8a2be2;
 margin-bottom: 1rem;
 text-shadow: 0 0 10px rgba(138, 43, 226, 0.3);
}
.password-reset-header h1 {
 font-size: 1.8rem;
 margin-bottom: 0.5rem;
 color: #fff;
}
.password-reset-container input {
 width: 100%;
 padding: 0.8rem 1rem 0.8rem 2.8rem;
 margin-bottom: 0;
 border-radius: 8px;
 border: none;
 background: rgba(255, 255, 255, 0.1);
 color: #fff;
 font-size: 1rem;
 transition: all 0.3s;
}
.password-reset-container input:focus {
 outline: none;
 box-shadow: 0 0 0 2px rgba(138, 43, 226, 0.5);
 background: rgba(255, 255, 255, 0.15);
}
.input-group {
 position: relative;
 margin-bottom: 1.5rem;
}
.input-group i {
 position: absolute;
 left: 15px;
 top: 50%;
 transform: translateY(-50%);
 color: #8a2be2;
 opacity: 0.7;
 font-size: 1rem;
}
.input-icon {
 position: absolute;
 left: 15px;
 top: 50%;
 transform: translateY(-50%);
 color: #8a2be2;
 opacity: 0.7;
 font-size: 1rem;
}
.reset-form input {
 width: 100%;
 padding: 0.8rem 1rem 0.8rem 2.8rem;
 margin-bottom: 0;
 border-radius: 8px;
 border: none;
 background: rgba(255, 255, 255, 0.1);
 color: #fff;
 font-size: 1rem;
 transition: all 0.3s;
}
.reset-form input:focus {
 outline: none;
 box-shadow: 0 0 0 2px rgba(138, 43, 226, 0.5);
 background: rgba(255, 255, 255, 0.15);
}
.success-message {
 background: rgba(0, 255, 0, 0.1);
 border: 1px solid rgba(0, 255, 0, 0.3);
 color: #4caf50;
 padding: 1rem;
 border-radius: 8px;
 margin-bottom: 1.5rem;
 backdrop-filter: blur(5px);
 display: flex;
 flex-direction: column;
 align-items: center;
 gap: 0.5rem;
}
.success-message i {
 font-size: 1.5rem;
 margin-bottom: 0.5rem;
}
@keyframes pulse {
 0% {
  box-shadow: 0 0 0 0 rgba(244, 67, 54, 0.1);
 }
 70% {
  box-shadow: 0 0 0 10px rgba(244, 67, 54, 0);
 }
 100% {
  box-shadow: 0 0 0 0 rgba(244, 67, 54, 0);
 }
}
.error-message {
 background: rgba(255, 0, 0, 0.1);
 border: 1px solid rgba(255, 0, 0, 0.3);
 color: #ff4d4d;
 padding: 0.75rem;
 border-radius: 8px;
 margin-bottom: 1rem;
 backdrop-filter: blur(5px);
}
@media (max-width: 768px) {
 .container {
  padding: 1rem;
 }
 .settings-content {
  padding: 1rem;
 }
 .settings-section {
  padding: 1rem;
 }
 .api-keys-table {
  display: block;
  overflow-x: auto;
 }
 .api-key-container {
  padding: 1.5rem;
 }
 .api-key-display {
  flex-direction: column;
 }
 .btn-copy {
  margin-left: 0;
  margin-top: 1rem;
  width: 100%;
  justify-content: center;
 }
 .actions-cell {
  flex-direction: column;
  gap: 0.3rem;
 }
 .btn-small {
  width: 100%;
 }
 .reset-form {
  padding: 1.5rem;
 }
 .reset-header i {
  font-size: 2rem;
 }
 .reset-header h1 {
  font-size: 1.5rem;
 }
 .password-reset-container {
  padding: 1.5rem;
 }
 .password-reset-header i {
  font-size: 2rem;
 }
 .password-reset-header h1 {
  font-size: 1.5rem;
 }
 .blob-1,
 .blob-2,
 .blob-3 {
  display: none;
 }
}
::-webkit-scrollbar {
 width: 10px;
}
::-webkit-scrollbar-track {
 background: #1a1a1a;
 border-radius: 5px;
}
::-webkit-scrollbar-thumb {
 background: #8a2be2;
 border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
 background: #7b1fa2;
}
