* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: #050505;
    color: #ffffff;
    min-height: 100vh;
    overflow-x: hidden;
}

/* Background */
.bg-layer {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: url('bg.png') no-repeat center center / cover;
    z-index: -2;
    transform: scale(1.05);
}

.bg-layer::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(138, 43, 226, 0.2), transparent 50%),
        radial-gradient(circle at bottom left, rgba(255, 215, 0, 0.15), transparent 50%),
        rgba(0, 0, 0, 0.4);
    z-index: -1;
}

.hidden {
    display: none !important;
}

/* Login Overlay */
.login-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 100;
    backdrop-filter: blur(20px);
}

.login-overlay.active {
    display: flex;
}

.login-card {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 40px;
    text-align: center;
    max-width: 400px;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.login-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border-color: rgba(255, 215, 0, 0.3);
}

.login-card h1 {
    font-weight: 900;
    color: #ffd700;
    margin-bottom: 10px;
}

/* --- FAQ Section --- */
.faq-section {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.faq-details {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.faq-details:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 215, 0, 0.25);
}

.faq-details[open] {
    border-color: rgba(255, 215, 0, 0.35);
}

.faq-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    cursor: pointer;
    list-style: none;
    user-select: none;
}

.faq-item::-webkit-details-marker {
    display: none;
}

.faq-icon {
    font-size: 18px;
    transition: transform 0.3s ease, color 0.3s ease;
}

.faq-details[open] .faq-icon {
    transform: rotate(180deg);
    color: #ffd700 !important;
}

.faq-answer {
    padding: 12px 20px 16px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.login-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    padding: 15px 25px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-top: 20px;
}

/* --- TOP NAVBAR --- */
.top-nav {
    position: relative;
    z-index: 50;
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 10px 20px;
    min-height: 70px;
    height: auto;
}

.nav-left,
.nav-center,
.nav-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo {
    font-weight: 900;
    font-size: 22px;
    font-style: italic;
    margin-right: 20px;
}

.logo span {
    color: #ffd700;
}

.logo-sub {
    font-size: 10px;
    display: block;
    color: #ffd700;
    letter-spacing: 2px;
}

.profile-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.avatar {
    width: 36px;
    height: 36px;
    background: #ffd700;
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
}

.user-name {
    font-weight: 700;
    font-size: 13px;
    color: #ffd700;
}

.user-email {
    font-size: 11px;
    color: #aaa;
}

.nav-box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 8px 15px;
    min-height: 50px;
    height: auto;
    border-radius: 8px;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.nav-box:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.purple-box {
    background: rgba(138, 43, 226, 0.8);
    padding-right: 60px;
}

.dark-box {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.box-label {
    font-size: 9px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 800;
}

.box-value {
    font-size: 14px;
    font-weight: 800;
}

.box-sub {
    font-size: 9px;
    color: rgba(255, 255, 255, 0.5);
}

.blue-text {
    color: #4facfe;
}

.copy-btn {
    position: absolute;
    right: 5px;
    bottom: 6px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: #fff;
    font-size: 9px;
    font-weight: 600;
    padding: 2px 6px;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.copy-btn:hover {
    background: rgba(255, 255, 255, 0.3);
}

.nav-btn {
    padding: 8px 16px;
    border-radius: 8px;
    font-weight: 800;
    font-size: 12px;
    cursor: pointer;
}

.yellow-outline {
    border: 1px solid #ffd700;
    color: #ffd700;
    background: transparent;
}

.red-solid {
    background: #ef4444;
    border: none;
    color: #fff;
}

/* --- DASHBOARD MAIN --- */
.dashboard-wrapper {
    max-width: 600px;
    margin: 40px auto;
    padding: 20px;
    background: rgba(255, 255, 255, 0.01);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.dash-card {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.dash-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

/* Balances */
.balance-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.bal-col {
    display: flex;
    flex-direction: column;
}

.bal-col.right {
    align-items: flex-end;
}

.bal-label {
    font-size: 12px;
    color: #aaa;
    font-weight: 600;
}

.bal-val {
    font-size: 32px;
    font-weight: 900;
}

.yellow-text {
    color: #ffd700;
}

.claim-row {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
}

.flex-btn {
    flex: 1;
    padding: 12px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 13px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.flex-btn:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.yellow-solid {
    background: #ffd700;
    color: #000;
    border: none;
}

.dark-outline {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
}

.claim-info {
    text-align: center;
    font-size: 11px;
    color: #888;
    margin-bottom: 20px;
}

.huge-btn {
    display: block;
    width: 100%;
    padding: 16px;
    border-radius: 12px;
    font-weight: 800;
    font-size: 16px;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    margin-bottom: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.huge-btn:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.purple-solid {
    background: #8a2be2;
    color: #fff;
    border: none;
}

.dash-btn {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.dash-btn:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* Auto Summary */
.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.card-header h3 {
    font-size: 12px;
    color: #ffd700;
    font-weight: 800;
}

.small-btn {
    background: rgba(255, 255, 255, 0.1);
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 11px;
    color: #ccc;
    text-decoration: none;
}

.summary-list {
    list-style: none;
}

.summary-list li {
    font-size: 13px;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    color: #ccc;
}

.red-x {
    color: #ef4444;
    margin-right: 5px;
}

.summary-list .time {
    float: right;
    color: #666;
}

/* Region */
.center-title {
    text-align: center;
    font-size: 13px;
    color: #ffd700;
    font-weight: 800;
    margin-bottom: 15px;
}

.region-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 8px;
}

.region-btn {
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 10px 0;
    color: #aaa;
    font-weight: 700;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.region-btn:hover {
    transform: translateY(-2px) scale(1.05);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.region-btn.active {
    background: rgba(255, 255, 255, 0.1);
    border-color: #ffd700;
    color: #fff;
}

/* UID Input */
.uid-section {
    margin-top: 20px;
}

.uid-section label {
    font-size: 12px;
    font-weight: 700;
    color: #aaa;
}

.input-wrap {
    position: relative;
    margin-top: 8px;
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.input-wrap:hover,
.input-wrap:focus-within {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.input-wrap input {
    width: 100%;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 16px;
    border-radius: 12px;
    color: #fff;
    font-size: 16px;
    font-family: inherit;
    outline: none;
    transition: border-color 0.3s ease, background 0.3s ease;
}

.input-wrap:hover input,
.input-wrap:focus-within input {
    border-color: rgba(255, 255, 255, 0.3);
    background: rgba(0, 0, 0, 0.6);
}

.absolute-send {
    position: absolute;
    right: 6px;
    top: 6px;
    bottom: 6px;
    padding: 0 20px;
    border-radius: 8px;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.2s ease;
}

.absolute-send:hover {
    transform: scale(1.03);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.absolute-send:active {
    transform: scale(0.97);
    box-shadow: none;
}

.uid-help {
    font-size: 11px;
    color: #666;
    margin-top: 8px;
}

/* Status */
.status-box {
    margin-top: 15px;
    padding: 15px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    text-align: center;
    font-size: 14px;
    font-weight: 600;
}

/* Floating UI */
.floating-help {
    position: fixed;
    top: 80px;
    right: 20px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #0ea5e9;
    color: white;
    border: none;
    font-weight: 900;
    font-size: 20px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.floating-help:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(14, 165, 233, 0.5);
}

.floating-install {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: white;
    color: black;
    border: none;
    padding: 10px 20px;
    border-radius: 20px;
    font-weight: 800;
    cursor: pointer;
}

/* Toast System */
.toast-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.toast {
    background: rgba(25, 25, 25, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 15px;
    border-radius: 12px;
    color: #fff;
    transform: translateX(120%);
    transition: transform 0.3s;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
}

.toast.show {
    transform: translateX(0);
}

.toast.error {
    border-left: 4px solid #ef4444;
}

.toast.success {
    border-left: 4px solid #4ade80;
}

/* --- AUTOLIKE PAGE --- */
.autolike-container {
    max-width: 800px;
    margin: 40px auto;
    padding: 20px;
}

.back-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 10px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    width: fit-content;
}

.back-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.4);
    color: white;
}

.settings-card {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 30px;
    margin-bottom: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.settings-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.settings-card h2,
.settings-card h3 {
    color: #ffd700;
    font-weight: 800;
}

.settings-card p {
    color: #888;
    font-size: 13px;
}

.uid-slot {
    display: grid;
    grid-template-columns: 1fr 120px 100px 140px;
    gap: 15px;
    background: rgba(0, 0, 0, 0.3);
    padding: 15px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    margin-bottom: 15px;
}

.uid-slot label {
    font-size: 10px;
    color: #aaa;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 5px;
    display: block;
}

.glass-input {
    width: 100%;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    padding: 10px;
    border-radius: 8px;
    outline: none;
    font-family: inherit;
    font-size: 13px;
}

.days-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.day-chip input {
    display: none;
}

.day-chip span {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    color: #888;
}

.day-chip input:checked+span {
    background: #ffd700;
    color: #000;
    border-color: #ffd700;
}

.toggle-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(0, 0, 0, 0.3);
    padding: 20px;
    border-radius: 12px;
    margin-top: 20px;
}

.switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 28px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 34px;
    transition: .4s;
}

.slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 4px;
    bottom: 4px;
    background: white;
    border-radius: 50%;
    transition: .4s;
}

input:checked+.slider {
    background: #ffd700;
}

input:checked+.slider:before {
    transform: translateX(22px);
    background: #000;
}

.glass-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.glass-table th {
    text-align: left;
    font-size: 11px;
    color: #aaa;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 10px;
}

.glass-table td {
    padding: 15px 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 13px;
}

.status-badge {
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
}

.status-badge.success {
    background: rgba(74, 222, 128, 0.1);
    color: #4ade80;
}

.status-badge.error {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
}

/* --- PURCHASE PAGE --- */
.pricing-cards {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
    margin-top: 30px;
}

.price-card {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 25px;
    position: relative;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
}

.price-card h4 {
    font-size: 20px;
    color: #fff;
    margin-bottom: 15px;
}

.highlight-card {
    border-color: #ffd700;
    background: rgba(255, 215, 0, 0.05);
}

.highlight-card h4 {
    color: #ffd700;
}

.badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: #ffd700;
    color: #000;
    font-size: 10px;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 10px;
}

.features-list {
    list-style: none;
    margin-bottom: 20px;
}

.features-list li {
    font-size: 13px;
    color: #aaa;
    margin-bottom: 8px;
}

.features-list li span {
    color: #4ade80;
    margin-right: 5px;
}

.crypto-section {
    margin-top: 30px;
    text-align: center;
    background: rgba(0, 0, 0, 0.3);
    padding: 20px;
    border-radius: 16px;
}

/* --- PROFILE MODAL --- */
.profile-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    background: rgba(20, 25, 40, 0.5);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
    width: 200px;
    z-index: 100;
    display: flex;
    flex-direction: column;
    padding: 8px 0;
    animation: dropdownFade 0.2s ease-out;
}

@keyframes dropdownFade {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.profile-dropdown.hidden {
    display: none !important;
}

.dropdown-item {
    background: transparent;
    border: none;
    width: 100%;
    text-align: left;
    padding: 12px 20px;
    font-size: 14px;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    transition: 0.2s;
}

.dropdown-item:hover {
    background: rgba(255, 255, 255, 0.1);
}

.dropdown-item.text-red {
    color: #ef4444;
}

.dropdown-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin: 4px 0;
}

.profile-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 200;
    background-color: #0a0a0f;
    overflow-y: auto;
    flex-direction: column;
}

.profile-modal.active {
    display: block;
    animation: slideUp 0.3s ease-out;
}

@keyframes slideUp {
    from {
        transform: scale(0.9) translateY(30px);
        opacity: 0;
    }

    to {
        transform: scale(1) translateY(0);
        opacity: 1;
    }
}

.profile-modal-content {
    min-height: 100vh;
    background: rgba(0, 0, 0, 0.85);
    position: relative;
    padding-bottom: 50px;
}

.profile-close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.3);
    border: none;
    color: white;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-size: 16px;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
}

.profile-header-bg {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 50px 20px 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-bottom-left-radius: 30px;
    border-bottom-right-radius: 30px;
    position: relative;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
}

.profile-avatar-container {
    position: relative;
    margin-bottom: 15px;
}

.profile-avatar-large {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: #d35400;
    color: white;
    font-size: 40px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 4px solid white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.profile-avatar-large img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.profile-avatar-cam {
    position: absolute;
    bottom: 0;
    right: 0;
    background: white;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    color: #1e5dd9;
}

.profile-name-large {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 5px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.profile-email-large {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 15px;
}

.profile-google-badge {
    background: rgba(255, 255, 255, 0.2);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.profile-stats-row {
    position: relative;
    margin-top: 30px;
    display: flex;
    gap: 15px;
    width: 90%;
    max-width: 600px;
    justify-content: center;
}

@media (max-width: 500px) {
    .profile-stats-row {
        flex-direction: column;
    }
}

.profile-stat-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 16px;
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.stat-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.stat-icon.yellow-bg {
    background: rgba(255, 215, 0, 0.2);
    color: #ffd700;
}

.stat-icon.blue-bg {
    background: rgba(79, 172, 254, 0.2);
    color: #4facfe;
}

.stat-icon.green-bg {
    background: rgba(74, 222, 128, 0.2);
    color: #4ade80;
}

.stat-details {
    display: flex;
    flex-direction: column;
}

.stat-title {
    font-size: 10px;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 2px;
}

.stat-val {
    font-size: 16px;
    font-weight: 900;
}

.profile-body {
    padding: 0 20px 20px;
    max-width: 600px;
    margin: -40px auto 0;
    width: 100%;
    position: relative;
    z-index: 10;
}

.profile-actions-row {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
}

.profile-action-btn {
    flex: 1;
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 20px 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: 0.3s;
    color: #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.profile-action-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.action-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.action-icon.purple-icon {
    background: rgba(138, 43, 226, 0.1);
    color: #8a2be2;
}

.action-icon.green-icon {
    background: rgba(74, 222, 128, 0.1);
    color: #22c55e;
}

.action-icon.orange-icon {
    background: rgba(249, 115, 22, 0.1);
    color: #f97316;
}

.profile-action-btn span {
    font-size: 13px;
    font-weight: 800;
}

.history-title {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.history-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 3px;
    background: #ef4444;
    border-radius: 2px;
}

.history-accordion {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.history-item {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.history-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 215, 0, 0.3);
}

.history-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.hist-icon {
    font-size: 18px;
}

.hist-desc {
    font-size: 14px;
    font-weight: 600;
    color: #fff;
}

.hist-date {
    font-size: 11px;
    color: #aaa;
    margin-top: 3px;
}

.history-right {
    font-weight: 800;
    font-size: 14px;
    text-align: right;
}

.hist-success {
    color: #4ade80;
}

.hist-failed {
    color: #ef4444;
}

/* --- EDIT PROFILE MODAL --- */
.ep-overlay {
    position: fixed;
    inset: 0;
    z-index: 300;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(12px);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: epFadeIn 0.25s ease-out;
}

@keyframes epFadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.ep-overlay.hidden {
    display: none !important;
}

.ep-card {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 36px 32px 28px;
    width: 100%;
    max-width: 420px;
    position: relative;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
    animation: epSlideUp 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes epSlideUp {
    from {
        transform: scale(0.9) translateY(30px);
        opacity: 0;
    }

    to {
        transform: scale(1) translateY(0);
        opacity: 1;
    }
}

.ep-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: rgba(255, 255, 255, 0.08);
    border: none;
    color: #aaa;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.2s;
}

.ep-close:hover {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
}

.ep-title {
    font-size: 22px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 4px;
}

.ep-sub {
    font-size: 13px;
    color: #888;
    margin-bottom: 28px;
}

.ep-photo-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-bottom: 28px;
}

.ep-avatar-preview {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: #d35400;
    color: #fff;
    font-size: 38px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid rgba(255, 255, 255, 0.2);
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.ep-avatar-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.ep-upload-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(138, 43, 226, 0.15);
    border: 1px solid rgba(138, 43, 226, 0.4);
    color: #c084fc;
    font-size: 13px;
    font-weight: 700;
    padding: 8px 18px;
    border-radius: 10px;
    cursor: pointer;
    transition: 0.2s;
}

.ep-upload-btn:hover {
    background: rgba(138, 43, 226, 0.3);
}

.ep-remove-photo {
    background: transparent;
    border: none;
    color: #888;
    font-size: 12px;
    cursor: pointer;
    text-decoration: underline;
    font-family: inherit;
    transition: 0.2s;
}

.ep-remove-photo:hover {
    color: #ef4444;
}

.ep-field {
    margin-bottom: 24px;
}

.ep-label {
    display: block;
    font-size: 11px;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.ep-input {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 10px;
    padding: 13px 16px;
    color: #fff;
    font-size: 15px;
    font-family: inherit;
    outline: none;
    transition: 0.2s;
}

.ep-input:focus {
    border-color: rgba(138, 43, 226, 0.6);
    background: rgba(255, 255, 255, 0.08);
}

.ep-actions {
    display: flex;
    gap: 12px;
}

.ep-btn {
    flex: 1;
    padding: 13px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 800;
    font-family: inherit;
    cursor: pointer;
    transition: 0.2s;
}

.ep-cancel {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #aaa;
}

.ep-cancel:hover {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
}

.ep-save {
    background: #8a2be2;
    border: none;
    color: #fff;
}

.ep-save:hover {
    background: #9d3ef5;
    transform: translateY(-1px);
}

.ep-save:active {
    transform: translateY(0);
}

/* --- HELP / GUIDE MODAL --- */
.help-btn {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 56px;
    height: 56px;
    background: #0ea5e9;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 800;
    box-shadow: 0 10px 25px rgba(14, 165, 233, 0.4);
    cursor: pointer;
    z-index: 100;
    transition: 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: none;
}

.help-btn:hover {
    transform: scale(1.1);
    background: #0284c7;
}

.guide-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    z-index: 400;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: epFadeIn 0.2s ease-out;
}

.guide-overlay.hidden {
    display: none !important;
}

.guide-card {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 30px;
    width: 90%;
    max-width: 500px;
    color: #fff;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
    position: relative;
    max-height: 85vh;
    overflow-y: auto;
}

.guide-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.08);
    border: none;
    color: #aaa;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    cursor: pointer;
    transition: 0.2s;
}

.guide-close:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.15);
}

.guide-title {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 24px;
    color: #0ea5e9;
    display: flex;
    align-items: center;
    gap: 10px;
}

.guide-step {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 18px;
    border-radius: 12px;
    margin-bottom: 12px;
}

.guide-step h4 {
    margin-bottom: 6px;
    color: #ffd700;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.guide-step p {
    font-size: 13.5px;
    color: #ccc;
    line-height: 1.5;
    margin: 0;
}

.ff-logo-img {
    transition: filter 0.3s ease, transform 0.2s ease;
    cursor: pointer;
}

.ff-logo-img:hover {
    filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.8)) drop-shadow(0 0 15px rgba(255, 140, 0, 0.6));
    transform: scale(1.05);
}

.ff-logo-img:active {
    filter: drop-shadow(0 0 12px rgba(255, 215, 0, 1)) drop-shadow(0 0 20px rgba(255, 140, 0, 0.8));
    transform: scale(0.95);
}

.section-title {
    font-size: 28px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 10px;
    color: white;
    text-transform: uppercase;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.section-subtitle {
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 13px;
    margin-bottom: 40px;
}

.faq-section {
    width: 100%;
    margin: 0 auto;
}

.faq-details {
    background: rgba(15, 20, 35, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    margin-bottom: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item {
    padding: 18px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    font-weight: 600;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    list-style: none;
}

.faq-item::-webkit-details-marker {
    display: none;
}

.faq-item:hover {
    background: rgba(255, 255, 255, 0.05);
}

.faq-details[open] .faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.faq-details[open] .faq-icon {
    transform: rotate(180deg);
}

.faq-icon {
    transition: transform 0.3s ease;
    display: inline-block;
}

.faq-answer {
    padding: 18px 25px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    background: rgba(0, 0, 0, 0.2);
}

/* ============================================
   MOBILE RESPONSIVE — Main Breakpoint (768px)
   ============================================ */
@media (max-width: 768px) {

    /* --- NAVBAR --- */
    .top-nav {
        flex-direction: column;
        height: auto;
        padding: 10px 12px;
        gap: 8px;
        position: sticky;
        top: 0;
        z-index: 50;
    }

    .nav-left {
        width: 100%;
        justify-content: center;
    }

    .logo {
        margin-right: 0;
        font-size: 18px;
    }

    /* Make nav-center horizontally scrollable */
    .nav-center {
        width: 100%;
        overflow-x: auto;
        gap: 8px;
        padding-bottom: 4px;
        justify-content: flex-start;
        scrollbar-width: none;
        -ms-overflow-style: none;
        -webkit-overflow-scrolling: touch;
    }

    .nav-center::-webkit-scrollbar {
        display: none;
    }

    .nav-box {
        min-width: 110px;
        flex-shrink: 0;
        padding: 0 10px;
        height: 48px;
    }

    .purple-box {
        padding-right: 36px;
    }

    .copy-btn {
        right: 6px;
        bottom: 6px;
        font-size: 9px;
        padding: 1px 5px;
    }

    .nav-right {
        width: 100%;
        justify-content: center;
        border-top: 1px solid rgba(255, 255, 255, 0.07);
        padding-top: 8px;
    }

    /* --- DASHBOARD --- */
    .dashboard-wrapper {
        margin: 10px;
        padding: 15px;
        border-radius: 16px;
    }

    .bal-val {
        font-size: 26px;
    }

    /* Claim row — stack on very small */
    .claim-row {
        flex-wrap: wrap;
    }

    .flex-btn {
        min-width: 130px;
    }

    /* --- REGION GRID — 4 columns instead of 7 --- */
    .region-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 6px;
    }

    .region-btn {
        font-size: 10px;
        padding: 9px 0;
    }

    /* --- UID INPUT + SEND BUTTON --- */
    .input-wrap {
        display: flex;
        flex-direction: column;
        gap: 8px;
    }

    .input-wrap input {
        padding-right: 16px;
        font-size: 15px;
    }

    .absolute-send {
        position: static;
        width: 100%;
        padding: 14px 10px;
        border-radius: 10px;
        font-size: 14px;
    }

    /* --- AUTOLIKE PAGE --- */
    .autolike-container,
    .glass-container {
        margin: 10px !important;
        padding: 15px !important;
    }

    .settings-card {
        padding: 18px;
        border-radius: 16px;
    }

    /* uid-slot: stack to single column */
    .uid-slot {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    /* Days grid — wrap nicely */
    .days-grid {
        gap: 7px;
    }

    .day-chip span {
        padding: 7px 12px;
        font-size: 11px;
        border-radius: 10px;
    }

    /* Toggle box */
    .toggle-box {
        padding: 15px;
    }

    /* History table — horizontal scroll */
    .table-wrap {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .glass-table {
        min-width: 480px;
    }

    /* --- PURCHASE PAGE --- */
    .pricing-cards {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    /* --- PROFILE MODAL --- */
    .profile-stats-row {
        flex-direction: column;
        width: 95%;
        gap: 10px;
    }

    .profile-body {
        margin-top: -20px;
        padding: 0 12px 20px;
    }

    .profile-actions-row {
        gap: 10px;
    }

    .profile-action-btn {
        padding: 15px 8px;
    }

    /* History items — allow wrap */
    .history-item {
        flex-wrap: wrap;
        gap: 8px;
    }

    .history-right {
        width: 100%;
        text-align: left;
    }

    /* --- GUIDE / HELP MODAL --- */
    .guide-card {
        width: 95%;
        padding: 22px 16px;
        border-radius: 16px;
    }

    .guide-title {
        font-size: 20px;
    }

    .help-btn {
        bottom: 20px;
        left: 16px;
        width: 48px;
        height: 48px;
        font-size: 24px;
    }

    /* --- TOAST --- */
    .toast-container {
        left: 10px;
        right: 10px;
        top: 10px;
    }

    .toast {
        font-size: 13px;
    }

    /* --- BACK BUTTON --- */
    .back-btn {
        font-size: 13px;
        padding: 8px 15px;
    }

    /* --- LOGIN PAGE --- */
    .login-card {
        padding: 28px 20px;
    }

    .ep-card {
        padding: 28px 20px 22px;
        margin: 16px;
        width: calc(100% - 32px);
    }
}

/* ============================================
   SMALL PHONES (480px and below)
   ============================================ */
@media (max-width: 480px) {

    /* Navbar boxes even more compact */
    .nav-box {
        min-width: 95px;
        height: 44px;
    }

    .box-value {
        font-size: 12px;
    }

    .box-label {
        font-size: 8px;
    }

    /* Logo smaller */
    .logo {
        font-size: 16px;
    }

    /* Region grid — 3 columns on tiny screens */
    .region-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 5px;
    }

    .region-btn {
        font-size: 9px;
        padding: 8px 0;
        border-radius: 6px;
    }

    /* Dashboard */
    .bal-val {
        font-size: 22px;
    }

    .claim-row {
        flex-direction: column;
    }

    .flex-btn {
        width: 100%;
    }

    /* Huge buttons */
    .huge-btn {
        font-size: 14px;
        padding: 14px;
    }

    /* Profile action buttons */
    .profile-actions-row {
        gap: 8px;
    }

    .profile-action-btn {
        padding: 12px 6px;
        border-radius: 12px;
    }

    .action-icon {
        width: 38px;
        height: 38px;
        font-size: 18px;
    }

    .profile-action-btn span {
        font-size: 11px;
    }

    /* History item */
    .hist-desc {
        font-size: 13px;
    }

    /* Days chip smaller */
    .day-chip span {
        padding: 6px 9px;
        font-size: 10px;
    }

    /* Toggle box */
    .toggle-box {
        padding: 12px;
        gap: 10px;
    }

    /* Guide card */
    .guide-card {
        padding: 18px 14px;
    }

    /* Settings card heading */
    .settings-card h2 {
        font-size: 18px !important;
    }

    .settings-card h3 {
        font-size: 16px !important;
    }
}

/* Pricing Grid Extracted from Purchase.html */

.section-title {
    font-size: 28px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 10px;
    color: white;
    text-transform: uppercase;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.section-subtitle {
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 13px;
    margin-bottom: 40px;
}

.pricing-grid {
    display: flex;
    justify-content: center;
    gap: 20px;
    max-width: 1100px;
    margin: 0 auto 60px;
    flex-wrap: wrap;
    padding: 0 20px;
}

.price-card {
    background: rgba(15, 20, 35, 0.7);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 30px;
    width: 320px;
    position: relative;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease;
}

.price-card:hover {
    transform: translateY(-5px);
}

.price-card.popular {
    border-color: rgba(255, 215, 0, 0.4);
    box-shadow: 0 0 40px rgba(255, 215, 0, 0.15);
}

.popular-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: #ffd700;
    color: #000;
    font-size: 11px;
    font-weight: 800;
    padding: 6px 12px;
    border-radius: 12px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 4px;
    box-shadow: 0 4px 10px rgba(255, 215, 0, 0.3);
}

.icon-box {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 22px;
}

.pack-name {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
    font-weight: 700;
}

.pack-price {
    font-size: 46px;
    font-weight: 900;
    color: white;
    display: flex;
    align-items: baseline;
    gap: 5px;
    margin-bottom: 10px;
}

.pack-price span.currency {
    font-size: 22px;
    color: #ffd700;
    font-weight: 800;
}

.pack-price span.lkr {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
    font-weight: 600;
}

.pack-duration {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 25px;
    font-weight: 500;
}

.coins-included {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 0.03);
    padding: 15px;
    border-radius: 12px;
    margin-bottom: 25px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.coins-val {
    font-size: 20px;
    font-weight: 800;
    color: #ffd700;
}

.coins-lbl {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 2px;
}

.sends-val {
    font-size: 15px;
    font-weight: 800;
    color: #00ff88;
    text-align: right;
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 0 0 30px;
    flex-grow: 1;
}

.features-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 14px;
    font-weight: 500;
}

.features-list li i {
    font-style: normal;
    font-size: 10px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.features-list li i.check {
    background: rgba(0, 255, 136, 0.15);
    color: #00ff88;
}

.features-list li i.cross {
    background: rgba(255, 0, 0, 0.15);
    color: #ff4a4a;
}

.buy-btn {
    width: 100%;
    padding: 14px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
    font-family: 'Outfit', sans-serif;
}

.btn-wa {
    background: #25D366;
    color: white;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.2);
}

.btn-wa:hover {
    background: #1eb957;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
}

.btn-crypto {
    background: rgba(255, 255, 255, 0.08);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-crypto:hover {
    background: rgba(255, 255, 255, 0.15);
}

.perks-grid {
    display: flex;
    justify-content: center;
    gap: 15px;
    max-width: 1000px;
    margin: 0 auto 80px;
    flex-wrap: wrap;
    padding: 0 20px;
}

.perk-card {
    background: rgba(15, 20, 35, 0.6);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 25px;
    width: calc(25% - 15px);
    min-width: 200px;
    text-align: center;
    transition: transform 0.3s ease;
}

.perk-card:hover {
    transform: translateY(-5px);
    background: rgba(25, 30, 45, 0.7);
}

.perk-icon {
    font-size: 28px;
    margin-bottom: 15px;
    display: inline-block;
    background: rgba(255, 255, 255, 0.05);
    width: 50px;
    height: 50px;
    line-height: 50px;
    border-radius: 50%;
}

.perk-title {
    font-size: 15px;
    font-weight: 800;
    color: white;
    margin-bottom: 8px;
}

.perk-desc {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.5;
    font-weight: 400;
}

.faq-section {
    max-width: 600px;
    margin: 0 auto 60px;
    padding: 0 20px;
}

.faq-item {
    background: rgba(15, 20, 35, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 18px 25px;
    margin-bottom: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    font-weight: 600;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(5px);
}

.back-btn-top {
    position: absolute;
    top: 25px;
    left: 25px;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 10px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    z-index: 10;
}

.back-btn-top:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.4);
}

/* Floating background elements for premium feel */
.glow-orb-1 {
    position: absolute;
    top: 10%;
    left: 10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 229, 255, 0.1) 0%, rgba(0, 0, 0, 0) 70%);
    z-index: -1;
    pointer-events: none;
}

.glow-orb-2 {
    position: absolute;
    top: 40%;
    right: 5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(181, 0, 255, 0.1) 0%, rgba(0, 0, 0, 0) 70%);
    z-index: -1;
    pointer-events: none;
}

.paypal-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.paypal-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.paypal-modal {
    background: rgba(15, 20, 35, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    width: 90%;
    max-width: 400px;
    text-align: center;
    position: relative;
    transform: translateY(20px) scale(0.95);
    transition: all 0.3s ease;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.paypal-modal-overlay.active .paypal-modal {
    transform: translateY(0) scale(1);
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.5);
    font-size: 24px;
    cursor: pointer;
    transition: color 0.3s;
}

.close-modal:hover {
    color: white;
}

.paypal-icon {
    color: #0079C1;
    margin-bottom: 20px;
    display: inline-block;
    background: rgba(0, 121, 193, 0.1);
    padding: 15px;
    border-radius: 50%;
}

.modal-title {
    color: white;
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 10px;
    font-family: 'Outfit', sans-serif;
}

.modal-desc {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    margin-bottom: 25px;
    line-height: 1.5;
}

.email-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 12px 20px;
    border-radius: 12px;
    margin-bottom: 25px;
}

.email-box span {
    color: #ffd700;
    font-weight: 600;
    font-size: 15px;
    letter-spacing: 0.5px;
}

.copy-btn {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: none;
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Outfit', sans-serif;
}

.copy-btn:hover {
    background: rgba(255, 255, 255, 0.2);
}

.modal-note {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
    font-style: italic;
}

/* === MOBILE RESPONSIVE === */
@media (max-width: 768px) {
    .main-title {
        font-size: 34px;
    }

    .stats-row {
        gap: 20px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .stat-item {
        min-width: 80px;
    }

    /* Price cards — full width on mobile */
    .pricing-grid {
        flex-direction: column;
        align-items: center;
        padding: 0 16px;
        gap: 16px;
    }

    .price-card {
        width: 100%;
        max-width: 380px;
    }

    /* Perks — 2 column grid */
    .perks-grid {
        gap: 12px;
        padding: 0 16px;
    }

    .perk-card {
        width: calc(50% - 6px);
        min-width: 140px;
        padding: 18px 12px;
    }

    /* Back button — not absolute on mobile */
    .back-btn-top {
        position: relative;
        top: auto;
        left: auto;
        display: inline-flex;
        margin: 16px 16px 0;
    }

    .hero-section {
        padding: 20px 16px;
        margin-top: 10px;
    }

    .paypal-modal {
        padding: 28px 20px;
        margin: 16px;
        width: calc(100% - 32px);
    }
}

@media (max-width: 480px) {
    .main-title {
        font-size: 28px;
    }

    .stats-row {
        gap: 15px;
    }

    .stat-val {
        font-size: 20px;
    }

    .perk-card {
        width: 100%;
        padding: 16px;
    }

    .perk-title {
        font-size: 14px;
    }
}

.section-title {
    font-size: 28px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 10px;
    color: white;
    text-transform: uppercase;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.section-subtitle {
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 13px;
    margin-bottom: 40px;
}

/* Mobile Responsiveness for Auto-Like Slots */
@media (max-width: 768px) {
    .uid-slot {
        display: flex !important;
        flex-direction: column !important;
        gap: 15px !important;
    }
}

/* Fix iOS Safari Date/Time Input Rendering Bug */
input[type="date"].glass-input,
input[type="time"].glass-input {
    -webkit-appearance: none;
    appearance: none;
    min-width: 100%;
    width: 100%;
    display: block;
}

input[type="date"]::-webkit-calendar-picker-indicator,
input[type="time"]::-webkit-calendar-picker-indicator {
    filter: invert(1);
    opacity: 0.6;
    background-color: transparent;
}

/* Community Section */
.community-section {
    text-align: center;
    margin: 40px auto 20px;
    padding: 20px;
    max-width: 600px;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

.community-title {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 15px;
    text-shadow: 0 2px 5px rgba(0,0,0,0.5);
}

.community-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.comm-btn {
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 800;
    color: white !important;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.comm-btn:hover {
    transform: translateY(-3px);
}

.btn-telegram {
    background: #2AABEE;
    box-shadow: 0 4px 15px rgba(42, 171, 238, 0.4);
}

.btn-telegram:hover {
    box-shadow: 0 6px 20px rgba(42, 171, 238, 0.6);
}

.btn-whatsapp {
    background: #25D366;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
}

.btn-whatsapp:hover {
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}