* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    user-select: none;
    outline: none;
    font-family: 'Space Grotesk', sans-serif;
}

body {
    display: flex;
    height: 100vh;
    background-color: rgb(3, 3, 3);
    color: white;
    overflow: hidden;
}

.sidebar {
    width: 280px;
    border-right: 1px solid rgba(255, 255, 255, 0.05);
    padding: 25px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.logo {
    font-size: 28px;
    text-align: center;
    font-weight: bold;
    letter-spacing: -0.5px;
    margin-top: -10px;
    padding: 10px;
    margin-bottom: -20px;
    cursor: pointer;
}

.highlight {
    color: #cd4bbc;
}

.section {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.section-title {
    font-size: 0.85rem;
    color: #888;
    padding: 5px 10px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.buttons {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.btn {
    background: none;
    color: white;
    border: none;
    padding: 12px 15px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    text-align: left;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 12px;
}

.btn2 {
    margin-top: -20px;
    background:	#24A1DE;
    color: white;
    border: none;
    padding: 12px 15px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    text-align: left;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn svg {
    width: 18px;
    height: 18px;
    opacity: 0.9;
}

.btn2 svg {
    width: 18px;
    height: 18px;
    opacity: 0.9;
}

.main-content svg {
    width: 20px;
    height: 20px;
}

.btn:hover {
    background: rgba(205, 75, 188, 0.2);
    transform: translateX(5px);
}

.btn.active {
    background: #cd4bbc;
}

.main-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.header {
    height: 80px;
    min-height: 80px;
    max-height: 80px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 30px;
    box-sizing: border-box;
    overflow: hidden;
}

.header h1 {
    font-size: 25px;
    font-weight: 600;
}

.profile {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 8px;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.profile:hover {
    background: rgba(255, 255, 255, 0.05);
}

.profile-img {
    width: 45px;
    height: 45px;
    border-radius: 6px;
    border: 1px solid #cd4bbc;
}

.profile-info p {
    text-align: right;
    font-size: 14px;
    color: #888;
}

.profile-info strong {
    color: white;
}

.profile-menu {
    position: absolute;
    top: 85px;
    right: 30px;
    background: rgb(3, 3, 3);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 8px;
    display: none;
    max-height: calc(100vh - 100px);
}

.profile-menu.active {
    display: block;
}

.profile-menu button {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    padding: 10px;
    border: none;
    background: none;
    color: white;
    cursor: pointer;
    border-radius: 6px;
}

.profile-menu button:hover {
    background: rgba(255, 255, 255, 0.01);
}

.content {
    flex: 1;
    padding: 30px;
    overflow-y: auto;
    animation: PanelFader 0.8s ease-out;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.stat-card {
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 25px;
    border-radius: 12px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.stat-card h3 {
    color: white;
    font-size: 1rem;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.stat-card h3 .icon {
    background-color: #cd4bbc;
    color: white;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px;
    border-radius: 5px;
    min-width: 27px;
    min-height: 27px;
}

.stat-card .value {
    font-size: 28px;
    font-weight: bold;
    color: #ffffff;
}

.container {
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 25px;
}

.container h2 {
    color: white;
    margin-bottom: 20px;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 9px;
}

.container h2 .icon {
    background-color: #cd4bbc;
    color: white;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px;
    border-radius: 5px;
    min-width: 27px;
    min-height: 27px;
}

.announcement {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    margin-bottom: 15px;
}

.announcement img {
    width: 45px;
    height: 45px;
    border-radius: 7px;
}

.announcement p {
    font-size: 0.91rem;
}

.announcement-content {
    flex: 1;
}

.announcement-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 4px;
}

.announcement-user {
    font-weight: 600;
    color: #cd4bbc;
}

.announcement-time {
    font-size: 0.8rem;
    font-weight: 600;
    color: #666;
}

.pricing {
    padding: 5px 0;
    background: linear-gradient(to bottom, rgba(3, 3, 3, 0.9), rgba(3, 3, 3, 0.7));
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.4rem;
    margin-top: 0rem;
    max-height: 88vh;
    overflow-y: auto;
    scrollbar-width: none;
}

.pricing-card {
    border-radius: 1rem;
    padding: 1rem 1.2rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
    text-align: center;
    cursor: pointer;
}

.pricing-header {
    margin-bottom: -1rem;
}

.pricing-header h3 {
    font-size: 1.8rem;
    margin-bottom: 0.1rem;
}

.price {
    font-size: 3rem;
    font-weight: 700;
    color: #cd4bbc;
}

.price span {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.5);
}

.pricing-features {
    list-style: none;
    margin: 2rem 0;
    text-align: left;
}

.pricing-features li {
    margin-bottom: 1rem;
    font-size: 0.94rem;
    color: rgba(255, 255, 255, 0.7);
    display: flex;
    align-items: center;
}

.pricing-icon {
    width: 3rem;
    height: 3rem;
    margin: 0 auto 0.5rem;
    padding: 0.6rem;
    border-radius: 0.6rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    color: #cd4bbc;
}

.pricing-icon svg {
    width: 1.5rem;
    height: 1.5rem;
}

.list-icon {
    width: 20rem;
    height: 20rem;
    display: inline-block;
    margin-right: 0.5rem;
    color: #cd4bbc;
    flex-shrink: 0;
}

.btn-prices {
    color: white !important;
    padding: 0.5rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-decoration: none;
    display: inline-block;
}

.methods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
}

.method-card {
    background: rgba(205, 75, 188, 0.1);
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
}

.method-card:hover {
    transform: translateY(-2px);
    background: rgba(205, 75, 188, 0.15);
}

.method-card h4 {
    color: #cd4bbc;
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.method-card p {
    font-size: 0.9rem;
    color: #888;
}

.server-status {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    padding: 12px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.02);
}

.status-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #4bcd71;
    box-shadow: 0 0 10px rgba(75, 205, 113, 0.5);
}

.stress-panel, .attacks-panel {
    background: rgba(3, 3, 3, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 10px;
    padding: 20px;
    height: 500px;
}

.stress-panel {
    flex: 1;
    position: relative;
    background: rgba(3, 3, 3, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 10px;
    padding: 150px 20px 20px;
}

.stress-panel h2 {
    position: absolute;
    top: 20px;
    left: 20px;
    margin: 0;
}

.attacks-panel {
    flex: 1.5;
    overflow-x: auto;
}

.form-group {
    margin-bottom: 1px;
}

.form-group-row {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.form-group-row .form-group {
    flex: 1;
    margin-bottom: 0;
}

.form-group label {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
    color: #aaa;
    gap: 8px;
}

.form-group label svg {
    width: 20px;
    height: 20px;
}

.form-group input, .form-group select {
    width: 100%;
    padding: 12px;
    background: none;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 8px;
    color: white;
    outline: none;
}

.form-group select option[value="socket"],
.form-group select option[value="discord"] {
color: #cd4bbc;
font-weight: 500;
}

.form-group select option[value="browser"]{
    color: #cdc44b;
    font-weight: 500;
}

.slider-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

#concurrents {
    width: 100%;
    height: 1px;
    -webkit-appearance: none;
    appearance: none;
    background: rgba(3, 3, 3, 0.8);
    border-radius: 12px;
    outline: none;
}

#concurrents::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 15px;
    height: 15px;
    background: #cd4bbc;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.45s ease;
}

#concurrents::-moz-range-thumb {
    width: 10px;
    height: 10px;
    background: #cd4bbc;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.45s ease;
}

#concurrents::-webkit-slider-thumb:active {
    transform: scale(0.95);
}

#concurrent-value {
    font-weight: bold;
    color: #cd4bbc;
}

.layer-buttons {
    position: absolute;
    top: 75px;
    left: 20px;
    display: flex;
    gap: 20px;
    z-index: 10;
}

.layer-btn svg {
    width: 20px;
    height: 20px;
}

.layer-btn {
    padding: 12px 99px;
    background-color: #cd4bbc3b;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: bold;
    transition: background-color 0.3s, box-shadow 0.3s;
    outline: none;
    align-items: center;
    display: flex;
    gap: 8px;
}

.layer-btn svg {
    color: #cd4bbc;
}

.layer-btn:focus {
    background-color: #cd4bbc;
}

.layer-btn.active {
    background-color: #cd4bbc;
    box-shadow: 0 0 5px 2px rgba(205, 75, 188, 0.3);
}

.layer-btn:hover {
    background-color: #a83594;
}

.launch-btn {
    width: 100%;
    padding: 12px;
    background: #cd4bbc;
    border: none;
    border-radius: 8px;
    color: white;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
    top: 20px;
}

.launch-btn:hover {
    box-shadow: 0 2px 15px rgba(205, 75, 188, 0.1);
    transform: translateY(-2px);
}

.attacks-panel table {
    width: 100%;
    border-spacing: 0;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    outline: none;
}

.attacks-panel th, td {
    padding: 10px;
    text-align: left;
    border: none;
}

.attacks-panel th {
    border: none;
}

.stop-btn {
    background: #ce0b0b;
    border: none;
    color: white;
    padding: 9px 15px;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s;
}

.methods-title {
    font-size: 1rem;
    font-weight: bold;
    margin-bottom: 0.7rem;
    color: white;
    display: flex;
    align-items: center;
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 8px;
}

.methods-title svg {
    background-color: #cd4bbc;
    color: white;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 0.55rem;
    padding: 6px;
    border-radius: 5px;
    min-width: 37px;
    min-height: 37px;
}

.methods {
    width: 100%;
    margin-bottom: 0.5rem;
    background: rgba(3, 3, 3, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 8px;
    overflow: hidden;
}

.methods th, .methods td {
    padding: 0.84rem;
    font-size: 0.8rem;
    font-weight: bold;
    text-align: left;
    border-left: none;
    border-right: none;
    border-bottom: none;
}

.methods th {
    text-transform: uppercase;
    font-weight: bold;
}

.methods tbody tr:first-child td {
    border-top: none;
}


.methods tbody tr:last-child td {
    border-bottom: none;
}

.addon-container {
    background-color: #f5f5f5;
    padding: 20px;
    border-radius: 8px;
    width: 300px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

@keyframes PanelFader {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.statistics-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    justify-items: center;
    align-items: flex-start;
    width: 100%;
    margin: 0 auto;
}

.network-status {
    margin-left: -105px;
    padding: 25px;
    border-radius: 12px;
    background-color: rgb(3, 3, 3);
    border: 1px solid rgba(255, 255, 255, 0.05);
    color: white;
    width: 114%;
    box-sizing: border-box;
}

.methods-statistics {
    margin-left: -110px;
    padding: 25px;
    border-radius: 12px;
    background-color: rgb(3, 3, 3);
    border: 1px solid rgba(255, 255, 255, 0.05);
    color: white;
    width: 85%;
    box-sizing: border-box;
}

.methods-title,
.network-status-title {
    font-size: 1rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: white;
    display: flex;
    align-items: center;
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 8px;
}

.methods-title svg,
.network-status-title svg {
    background-color: #cd4bbc;
    color: white;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 0.55rem;
    padding: 6px;
    border-radius: 5px;
    min-width: 37px;
    min-height: 37px;
}

.methods-statistics-content {
    display: flex;
    justify-content: space-between;
}

.methods-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 350px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 12px;
    border-radius: 8px;
}

.method-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
    font-weight: 600;
}

.color-box {
    width: 16px;
    height: 16px;
    border-radius: 50%;
}

.method-item.udp .color-box {
    background-color: #24A1DE;
}

.method-item.home-holder .color-box {
    background-color: #F39C12;
}

.method-item.vape-custom .color-box {
    background-color: #8E44AD;
}

.method-item.others .color-box {
    background-color: #E74C3C;
}

.methods-circle {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 200px;
    height: 200px;
    background: transparent;
}

.method-circle {
    position: relative;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: conic-gradient(
        #24A1DE 0deg 162deg,
        #F39C12 162deg 252deg,
        #8E44AD 252deg 324deg,
        #E74C3C 324deg 360deg
    );
}

.network-table {
    width: 100%;
    border-spacing: 0;
    margin-top: 10px;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    outline: none;
}

.network-table th,
.network-table td {
    padding: 8px 15px;
    text-align: left;
    border: none;
}

.network-table th {
    background-color: rgb(3, 3, 3);
    color: white;
}

.network-table td {
    font-size: 0.75rem;
    font-weight: bold;
    color: #fdfdfd;
}

.usage-bar {
    background-color: rgba(255, 255, 255, 0.02);
    border-radius: 5px;
    width: 100%;
    height: 5px;
    position: relative;
}

.usage {
    background-color: #17ad2b;
    box-shadow: 0 1px 15px #17ad2b0e;
    height: 100%;
    border-radius: 5px;
    position: absolute;
    top: 0;
    left: 0;
}

.status {
    position: relative;
    text-align: center;
    font-size: 0.9rem;
}

.status.online {
    color: #17ad2b;
}

.status.offline {
    color: #d10e0e;
}

.api-manager {
    padding: 25px;
    background-color: rgb(3, 3, 3);
    border-radius: 12px;
    color: white;
    width: 1500px;
    height: 500px;
    margin: 20px auto;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.api-manager-title {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 20px;
    color: white;
    text-align: center;
}

.api-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 20px 0;
}

.api-buttons .btn {
    background-color: #cd4bbc;
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.api-buttons .btn:hover {
    transform: translateY(-2px);
}

.api-manager-boxes {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.box {
    background: rgba(3, 3, 3, 0.8);
    padding: 20px;
    border-radius: 12px;
    width: 48%; 
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-sizing: border-box;
    transition: all 0.3s ease;
}

.box h3 {
    font-size: 1.25rem;
    margin-bottom: 10px;
    color: #cd4bbc;
}

.box p {
    font-size: 1rem;
    color: #bbb;
}

.input-container {
    margin-bottom: 20px;
    user-select: all;
}

.input-field {
    width: 100%;
    padding: 12px;
    background-color: rgba(3, 3, 3, 0.8);
    color: #bbb;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    font-size: 1rem;
    cursor: not-allowed;
    pointer-events: none;
    opacity: 0.5;
    text-align: center;
}

.param-text {
    color: #cd4bbc;
    font-weight: bold;
    text-decoration: underline;
    background-clip: text;
    -webkit-background-clip: text;
    display: inline;
    user-select: all;
}












































































.search-container {
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.8rem;
    padding: 1.5rem;
    margin-bottom: 2rem;
  }
  
  .search-tabs {
    display: flex;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.75rem;
    padding: 0.25rem;
    margin-bottom: 1rem;
  }
  
  .tab-button {
    flex: 1;
    padding: 0.75rem 1.5rem;
    border: none;
    background: none;
    color: white;
    cursor: pointer;
    border-radius: 0.5rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
  }
  
  .tab-button.active {
    background: #cd4bbc;
    color: #fff;
  }
  
  .search-input-container {
    position: relative;
    margin-bottom: 1rem;
  }
  
  .search-input {
    width: 100%;
    padding: 1rem 1rem 1rem 3rem;
    background: none;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.7rem;
    color: #fff;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    outline: none;
  }
  
  .search-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: white;
  }

  .search-button {
    position: absolute;
    right: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    padding: 0.5rem 1.5rem;
    background: #cd4bbc;
    outline: none;
    border: none;
    border-radius: 0.5rem;
    font-weight: 600;
    color: #fff;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.3s ease;
  }
  
  .search-button-loading {
    display: none;
  }
  
  .progress-container {
    display: none;
    margin-top: 1rem;
  }
  
  .progress-bar {
    height: 0.5rem;
    background: rgba(51, 65, 85, 0.5);
    border-radius: 999px;
    overflow: hidden;
  }
  
  .progress-fill {
    height: 100%;
    width: 0;
    background: linear-gradient(to right, #3b82f6, #8b5cf6);
    transition: width 0.3s ease;
  }
  
  .progress-text {
    margin-top: 0.5rem;
    color: #94a3b8;
    font-size: 0.875rem;
  }
  
  .results-section {
    opacity: 1;
    transition: opacity 0.3s ease;
  }
  
  .results-section.hidden {
    opacity: 0;
    pointer-events: none;
  }
  
  .results-summary {
    background: rgba(30, 41, 59, 0.5);
    backdrop-filter: blur(12px);
    border-radius: 1rem;
    padding: 1.5rem;
    border: 1px solid rgba(148, 163, 184, 0.1);
    margin-bottom: 2rem;
  }
  
  .results-summary h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }
  
  .summary-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .platform-indicators {
    display: flex;
    gap: 0.5rem;
  }
  
  .platform-icon {
    width: 2rem;
    height: 2rem;
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(51, 65, 85, 0.5);
    color: #64748b;
  }
  
  .platform-icon.found {
    background: rgba(34, 197, 94, 0.2);
    color: #4ade80;
  }
  
  .results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
  }
  
  .result-card {
    background: rgba(30, 41, 59, 0.5);
    backdrop-filter: blur(12px);
    border-radius: 1rem;
    padding: 1.5rem;
    border: 1px solid rgba(148, 163, 184, 0.1);
    transition: transform 0.3s ease;
  }
  
  .result-card:hover {
    transform: translateY(-2px);
  }
  
  .result-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
  }
  
  .platform-logo {
    width: 3rem;
    height: 3rem;
    border-radius: 9999px;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
  }
  
  .platform-info {
    margin-left: 1rem;
    flex: 1;
  }
  
  .platform-info h3 {
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
  }
  
  .platform-info p {
    color: #94a3b8;
  }
  
  .verified-badge {
    color: #3b82f6;
  }
  
  .result-details {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
  }
  
  .detail-item {
    display: flex;
    align-items: center;
    color: #94a3b8;
  }
  
  .detail-item i {
    margin-right: 0.75rem;
    color: #64748b;
  }
  
  .links-container {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
  }
  
  .links-container a {
    color: #3b82f6;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  
  .links-container a:hover {
    color: #60a5fa;
  }
  
  .not-found-section {
    background: rgba(30, 41, 59, 0.5);
    backdrop-filter: blur(12px);
    border-radius: 1rem;
    padding: 1.5rem;
    border: 1px solid rgba(148, 163, 184, 0.1);
  }
  
  .not-found-section h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
  }
  
  .not-found-platforms {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
  }
  
  .not-found-platform {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(51, 65, 85, 0.5);
    border-radius: 0.5rem;
    color: #94a3b8;
  }

  .searching .search-button-content {
    display: none;
  }
  
  .searching .search-button-loading {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }
  
  .searching .progress-container {
    display: block;
  }
  
  .spin {
    animation: spin 1s linear infinite;
  }
  
  @keyframes spin {
    from {
      transform: rotate(0deg);
    }
    to {
      transform: rotate(360deg);
    }
  }

#addons {
    background-color: rgba(3, 3, 3, 0.8);
    padding: 20px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    width: 100%;
    height: 350px;
    max-width: 500px;
    margin: 20px auto;
    position: relative;
    top: 14px;
    right: 506px;
}

#addons h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #ffffff;
    text-align: left;
}

.addon-option {
    margin-bottom: 15px;
}

.addon-option label {
    display: block;
    color: #bbb;
    font-size: 0.9rem;
    margin-bottom: 8px;
}

.addon-option select {
    width: 100%;
    padding: 10px;
    background-color: rgba(3, 3, 3, 0.7);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    font-size: 0.9rem;
    outline: none;
}

.addon-price {
    font-size: 1.5rem;
    text-align: left;
    color: white;
    margin-top: -15px;
    margin-bottom: 10px;
}

#addon-price {
    display: inline-flex;
    align-items: baseline;
    justify-content: center;
}

.price-value {
    font-size: 2rem; 
    font-weight: bold;
    color: #cd4bbc;
}

.price-duration {
    font-size: 1rem;
    color: #bbb;
}

#purchase-btn {
    width: 100%;
    background-color: #cd4bbc;
    color: white;
    padding: 12px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    margin-top: 20px;
    transition: all 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
}

#purchase-btn svg {
    width: 20px;
    height: 20px;
    margin-left: 10px;
}

#purchase-btn:hover {
    transform: translateY(-2px);
}

.addon-option label {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
    color: #aaa;
    gap: 8px;
    font-size: 1rem;
}

.addon-option label svg {
    width: 20px;
    height: 20px;
}

#concurrentsa {
    width: 100%;
    height: 1px;
    -webkit-appearance: none;
    appearance: none;
    background: rgba(3, 3, 3, 0.8);
    border-radius: 12px;
    outline: none;
}

#concurrentsa::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 15px;
    height: 15px;
    background: #cd4bbc;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.45s ease;
}

#concurrentsa::-moz-range-thumb {
    width: 10px;
    height: 10px;
    background: #cd4bbc;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.45s ease;
}

#concurrentsa::-webkit-slider-thumb:active {
    transform: scale(0.95);
}

#concurrenta-value {
    font-weight: bold;
    color: #cd4bbc;
}

option {
    background-color: rgb(3, 3, 3);
    color: white;
    font-size: 0.8rem;
    transition: background-color 0.3s ease-in-out;
}

option:hover {
    background-color: #cd4bbc;
}

option:checked {
    background-color: #cd4bbc;
}