@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: #060608;
    color: #ffffff;
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

/* Deep background with ambient glow orbs */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(ellipse 80% 60% at 20% 10%, rgba(255,255,255,0.04) 0%, transparent 60%),
        radial-gradient(ellipse 60% 50% at 80% 80%, rgba(255,255,255,0.03) 0%, transparent 55%),
        radial-gradient(ellipse 40% 40% at 50% 50%, rgba(255,255,255,0.015) 0%, transparent 70%),
        #060608;
    z-index: 0;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.05); }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-3px); }
    60% { transform: translateY(-1px); }
}

/* Grid removed for cleaner look */

@keyframes gridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

/* Floating Particles Effect */
.container::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(2px 2px at 20% 30%, rgba(255, 255, 255, 0.08), transparent),
        radial-gradient(2px 2px at 60% 70%, rgba(255, 255, 255, 0.06), transparent),
        radial-gradient(1px 1px at 50% 50%, rgba(255, 255, 255, 0.05), transparent),
        radial-gradient(1px 1px at 80% 10%, rgba(255, 255, 255, 0.07), transparent),
        radial-gradient(2px 2px at 90% 80%, rgba(255, 255, 255, 0.08), transparent),
        radial-gradient(1px 1px at 33% 90%, rgba(255, 255, 255, 0.06), transparent);
    background-size: 200% 200%;
    animation: particlesFloat 25s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}

@keyframes particlesFloat {
    0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.5; }
    25% { transform: translate(50px, -50px) scale(1.1); opacity: 0.7; }
    50% { transform: translate(-30px, 30px) scale(0.9); opacity: 0.6; }
    75% { transform: translate(30px, 50px) scale(1.05); opacity: 0.8; }
}

.container {
    position: relative;
    z-index: 1;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 40px;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

/* Back Button */
.back-button {
    position: absolute;
    top: 20px;
    left: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 9px 16px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.25s ease;
    z-index: 10;
    letter-spacing: 0.3px;
}

.back-button:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    transform: translateX(-2px);
}

/* Login Form - Premium Glass Card */
.login-form {
    background: rgba(18, 18, 22, 0.75);
    backdrop-filter: blur(40px) saturate(180%);
    -webkit-backdrop-filter: blur(40px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 44px 40px;
    width: 100%;
    max-width: 420px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    box-shadow:
        0 0 0 0.5px rgba(255, 255, 255, 0.06) inset,
        0 1px 0 0 rgba(255, 255, 255, 0.12) inset,
        0 32px 64px rgba(0, 0, 0, 0.6),
        0 8px 24px rgba(0, 0, 0, 0.4);
    position: relative;
    overflow: hidden;
}

/* Top edge highlight */
.login-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 10%;
    width: 80%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.18), transparent);
    pointer-events: none;
}

/* Subtle inner glow */
.login-form::after {
    content: '';
    position: absolute;
    top: -60px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 120px;
    background: radial-gradient(ellipse, rgba(255,255,255,0.04) 0%, transparent 70%);
    pointer-events: none;
    border-radius: 50%;
}

@keyframes formFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-6px); }
}

@keyframes shimmer {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Logo Image Styles */
.logo {
    margin-bottom: 4px;
    display: flex;
    justify-content: center;
    align-items: center;
}

@keyframes logoPulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.03); opacity: 0.95; }
}

/* Square icon pill - like the Eon screenshot */
.logo-image {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.12);
    box-shadow:
        0 0 0 0.5px rgba(255,255,255,0.06) inset,
        0 8px 24px rgba(0,0,0,0.5);
    background: rgba(30,30,35,0.8);
    padding: 8px;
    filter: brightness(1.1);
}

@keyframes logoGlow {
    0%, 100% { box-shadow: 0 0 0 0.5px rgba(255,255,255,0.06) inset, 0 8px 24px rgba(0,0,0,0.5); }
    50% { box-shadow: 0 0 0 0.5px rgba(255,255,255,0.1) inset, 0 8px 32px rgba(0,0,0,0.6), 0 0 20px rgba(255,255,255,0.06); }
}

.landing-logo-image {
    width: 72px;
    height: 72px;
    object-fit: cover;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.12);
    box-shadow: 0 8px 32px rgba(0,0,0,0.5);
    background: rgba(30,30,35,0.8);
    padding: 10px;
    filter: brightness(1.1);
}

/* Brand Name */
.brand-name {
    font-size: 22px;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
    letter-spacing: -0.3px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

@keyframes brandGlow {
    0%, 100% { filter: none; }
    50% { filter: none; }
}

.subtitle {
    font-size: 16px;
    color: rgba(255,255,255,0.5);
    margin: -4px 0 0 0;
    letter-spacing: 0.3px;
    font-weight: 400;
}

.form-group {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    font-size: 12px;
    color: rgba(255,255,255,0.5);
    font-weight: 500;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.input-icon {
    position: absolute;
    left: 14px;
    color: rgba(255,255,255,0.35);
    pointer-events: none;
    filter: none;
}

@keyframes iconPulse {
    0%, 100% { opacity: 0.8; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.1); }
}

.input-wrapper input {
    width: 100%;
    padding: 13px 14px 13px 40px;
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    color: #ffffff;
    font-size: 14px;
    font-family: inherit;
    outline: none;
    transition: all 0.2s ease;
    box-shadow: 0 1px 0 rgba(255,255,255,0.04) inset;
}

.input-wrapper input:focus {
    border-color: rgba(255, 255, 255, 0.22);
    background: rgba(255, 255, 255, 0.07);
    box-shadow:
        0 1px 0 rgba(255,255,255,0.06) inset,
        0 0 0 3px rgba(255, 255, 255, 0.06);
}

.input-wrapper input::placeholder {
    color: rgba(255,255,255,0.25);
}

/* Authenticate Button */
.authenticate-btn {
    width: 100%;
    padding: 13px 24px;
    background: #ffffff;
    color: #080808;
    border: none;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    letter-spacing: 0.2px;
    transition: all 0.2s ease;
    box-shadow:
        0 1px 0 rgba(255,255,255,0.8) inset,
        0 4px 16px rgba(0, 0, 0, 0.4);
    position: relative;
    overflow: hidden;
}

.authenticate-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255,255,255,0.12) 0%, transparent 100%);
    pointer-events: none;
}

.authenticate-btn:hover {
    background: #f0f0f0;
    box-shadow:
        0 1px 0 rgba(255,255,255,0.8) inset,
        0 8px 24px rgba(0, 0, 0, 0.5);
    transform: translateY(-1px);
}

.authenticate-btn:active {
    transform: translateY(1px) scale(0.99);
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.discord-link {
    font-size: 14px;
    color: #ffffff;
    opacity: 0.7;
    margin: 0;
}

.discord-link a {
    color: #5b9bd5;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.discord-link a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #5b9bd5, #7ab3e0);
    transition: width 0.3s ease;
}

.discord-link a:hover {
    color: #7ab3e0;
}

.discord-link a:hover::after {
    width: 100%;
}

/* Error Message with Glow - Red */
.error-message {
    background: rgba(26, 26, 26, 0.9);
    backdrop-filter: blur(10px);
    border: 2px solid #ef4444;
    border-radius: 10px;
    padding: 12px 16px;
    color: #ef4444;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 8px;
    animation: errorShake 0.5s ease, fadeIn 0.3s ease-in;
    box-shadow: 
        0 4px 15px rgba(239, 68, 68, 0.3),
        0 0 20px rgba(239, 68, 68, 0.2);
}

@keyframes errorShake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-4px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeOut {
    from {
        opacity: 1;
        transform: translateX(0);
    }
    to {
        opacity: 0;
        transform: translateX(100%);
    }
}

/* Notification Container */
.notification-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
    pointer-events: none;
}

/* Error Notification */
.error-notification {
    background: rgba(239, 68, 68, 0.95);
    backdrop-filter: blur(15px);
    border: 2px solid #ef4444;
    border-radius: 12px;
    padding: 16px 20px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 10px;
    animation: slideInRight 0.4s ease-out, fadeOut 0.4s ease-out 4.6s forwards;
    box-shadow:
        0 8px 25px rgba(239, 68, 68, 0.4),
        0 0 30px rgba(239, 68, 68, 0.2);
    pointer-events: auto;
    cursor: pointer;
    transition: all 0.3s ease;
    max-width: 300px;
}

.error-notification:hover {
    transform: translateX(-5px);
    box-shadow:
        0 8px 30px rgba(239, 68, 68, 0.5),
        0 0 40px rgba(239, 68, 68, 0.3);
}

/* Success Notification */
.success-notification {
    background: rgba(16, 185, 129, 0.95);
    backdrop-filter: blur(15px);
    border: 2px solid #10b981;
    border-radius: 12px;
    padding: 16px 20px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 10px;
    animation: slideInRight 0.4s ease-out, fadeOut 0.4s ease-out 2.6s forwards;
    box-shadow:
        0 8px 25px rgba(16, 185, 129, 0.4),
        0 0 30px rgba(16, 185, 129, 0.2);
    pointer-events: auto;
    cursor: pointer;
    transition: all 0.3s ease;
    max-width: 300px;
}

.success-notification:hover {
    transform: translateX(-5px);
    box-shadow:
        0 8px 30px rgba(16, 185, 129, 0.5),
        0 0 40px rgba(16, 185, 129, 0.3);
}

/* Old Success Message (keeping for compatibility) */
.success-message {
    position: fixed;
    top: 20px;
    right: 20px;
    background: rgba(16, 185, 129, 0.9);
    backdrop-filter: blur(10px);
    border: 2px solid #10b981;
    border-radius: 10px;
    padding: 12px 20px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
    z-index: 1000;
    animation: slideInRight 0.3s ease-out;
    box-shadow:
        0 4px 15px rgba(16, 185, 129, 0.3),
        0 0 20px rgba(16, 185, 129, 0.2);
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Dashboard Styles */
.dashboard-container {
    justify-content: flex-start;
    padding: 40px 20px;
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.dashboard-card {
    background: rgba(16, 16, 20, 0.72);
    backdrop-filter: blur(40px) saturate(160%);
    -webkit-backdrop-filter: blur(40px) saturate(160%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 28px;
    width: 100%;
    box-shadow:
        0 0 0 0.5px rgba(255,255,255,0.05) inset,
        0 1px 0 rgba(255,255,255,0.1) inset,
        0 24px 48px rgba(0,0,0,0.5),
        0 8px 16px rgba(0,0,0,0.3);
    transition: all 0.25s ease;
    animation: cardFadeIn 0.5s ease-out both;
    position: relative;
    overflow: hidden;
}

/* Top highlight edge on cards */
.dashboard-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 8%;
    width: 84%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
    pointer-events: none;
}

@keyframes cardFadeIn {
    from { opacity: 0; transform: translateY(16px); }
    to   { opacity: 1; transform: translateY(0); }
}

.dashboard-card:hover {
    border-color: rgba(255, 255, 255, 0.14);
    box-shadow:
        0 0 0 0.5px rgba(255,255,255,0.08) inset,
        0 1px 0 rgba(255,255,255,0.14) inset,
        0 32px 56px rgba(0,0,0,0.55),
        0 8px 20px rgba(0,0,0,0.35);
    transform: translateY(-3px);
}

/* Profile Section */
.profile-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.profile-left {
    display: flex;
    align-items: center;
    gap: 16px;
}

.avatar-wrapper {
    position: relative;
    animation: avatarFloat 3s ease-in-out infinite;
}

@keyframes avatarFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.08);
}

.online-indicator {
    position: absolute;
    bottom: 2px;
    right: 2px;
    width: 12px;
    height: 12px;
    background-color: #10b981;
    border: 2px solid #1a1a1a;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(16, 185, 129, 0.6);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.2); opacity: 0.8; }
}

.profile-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.username {
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    text-shadow: none;
}

.user-id {
    font-size: 14px;
    color: #ffffff;
    opacity: 0.6;
}

.logout-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: none;
}

.logout-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

/* Product Section */
.section-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.section-icon {
    color: #ffffff;
    opacity: 0.8;
    filter: none;
}

.discord-icon {
    color: #5865F2;
    filter: drop-shadow(0 0 5px rgba(88, 101, 242, 0.5));
}

.section-header h2 {
    font-size: 20px;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
    text-shadow: none;
}

.licensed-badge {
    display: inline-block;
    padding: 4px 12px;
    background: linear-gradient(135deg, rgba(15, 15, 15, 0.9), rgba(26, 26, 26, 0.9));
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 24px;
    letter-spacing: 0.5px;
    box-shadow: none;
}

.info-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    transition: all 0.3s ease;
}

.info-row:hover {
    border-bottom-color: rgba(255, 255, 255, 0.12);
    padding-left: 8px;
}

.info-row:last-of-type {
    border-bottom: none;
    margin-bottom: 24px;
}

.info-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 600;
    color: #ffffff;
    opacity: 0.7;
    letter-spacing: 0.5px;
}

.info-icon {
    color: #ffffff;
    opacity: 0.8;
    filter: none;
}

.info-value {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: #ffffff;
    font-weight: 500;
}

.copy-btn {
    background: none;
    border: none;
    color: #ffffff;
    opacity: 0.6;
    cursor: pointer;
    padding: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border-radius: 4px;
}

.copy-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    opacity: 1;
}

/* ── Navbar Transition (Static to Dynamic) ── */
.navbar {
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 1400px;
    height: 90px;
    background: rgba(10, 10, 15, 0);
    backdrop-filter: blur(0px);
    -webkit-backdrop-filter: blur(0px);
    border: 1px solid rgba(255, 255, 255, 0);
    border-radius: 0px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 40px;
    z-index: 1000;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform, top, width, height, background, border-radius;
}

.navbar.scrolled {
    top: 20px;
    width: 88%;
    max-width: 1100px;
    height: 66px;
    background: rgba(10, 10, 15, 0.6);
    backdrop-filter: blur(30px) saturate(180%);
    -webkit-backdrop-filter: blur(30px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 100px;
    padding: 0 24px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #ffffff;
    font-weight: 900;
    font-size: 20px;
    letter-spacing: -0.8px;
}

.nav-logo span {
    color: rgba(255, 255, 255, 0.3);
}

.nav-logo img {
    width: 30px;
    height: 30px;
    border-radius: 6px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s ease;
    position: relative;
}

.nav-link:hover {
    color: #ffffff;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1.5px;
    background: #ffffff;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.btn-dashboard {
    padding: 10px 20px;
    background: #ffffff;
    color: #000000;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.1);
}

.btn-dashboard:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.2);
    background: #f0f0f0;
}

/* ── Pricing & Shop Sections ── */
.section-title {
    font-size: 42px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 16px;
    letter-spacing: -1.5px;
}

.section-subtitle {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.4);
    text-align: center;
    max-width: 600px;
    margin: 0 auto 100px;
    line-height: 1.7;
}

.pricing-toggle-container {
    display: flex;
    justify-content: center;
    margin-bottom: 60px;
}

.pricing-toggle {
    display: flex;
    background: rgba(255, 255, 255, 0.03);
    padding: 4px;
    border-radius: 100px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    width: 220px;
}

.toggle-pill {
    position: absolute;
    top: 4px;
    left: 4px;
    width: calc(50% - 4px);
    height: calc(100% - 8px);
    background: #ffffff;
    border-radius: 100px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
}

.toggle-btn {
    flex: 1;
    border: none;
    background: transparent;
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
    font-weight: 600;
    padding: 10px 0;
    cursor: pointer;
    z-index: 2;
    transition: color 0.3s ease;
}

.toggle-btn.active {
    color: #000000;
}

.pricing-grid {
    display: none;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.pricing-grid.active {
    display: grid;
    animation: fadeInUp 0.6s ease both;
}

.pricing-card {
    background: rgba(15, 15, 20, 0.4);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 24px;
    padding: 48px 32px;
    position: relative;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
}

.pricing-card.popular {
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.02);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.popular-badge {
    position: absolute;
    top: 24px;
    right: 24px;
    background: #ffffff;
    color: #000000;
    font-size: 11px;
    font-weight: 800;
    padding: 4px 12px;
    border-radius: 100px;
    text-transform: uppercase;
}

.card-header h3 {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 12px;
}

.card-header p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.4);
    line-height: 1.6;
    margin-bottom: 32px;
}

.card-price {
    font-size: 48px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 32px;
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.card-price .currency {
    font-size: 24px;
    font-weight: 600;
}

.card-price .duration {
    font-size: 15px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.3);
}

.buy-btn {
    width: 100%;
    padding: 16px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-transform: uppercase;
}

.buy-btn.primary {
    background: #ffffff;
    color: #000000;
}

.buy-btn.primary:hover {
    background: #e8e8e8;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.1);
}

.buy-btn.secondary {
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.buy-btn.secondary:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-2px);
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.features-list li {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 16px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    line-height: 1.4;
}

.features-list li .check {
    color: #ffffff;
    font-weight: 700;
}


/* ── FAQ Section ── */
.faq-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.faq-item {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    margin-bottom: 16px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.faq-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.25);
}

.faq-question {
    padding: 28px 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
}

.faq-question span {
    font-size: 17px;
    font-weight: 600;
    color: #ffffff;
    letter-spacing: -0.2px;
}

.faq-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.4);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-answer {
    padding: 0 32px 32px;
    color: rgba(255, 255, 255, 0.45);
    font-size: 15px;
    line-height: 1.7;
    display: none;
    animation: fadeIn 0.4s ease;
}

.faq-item.active {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.25);
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
    background: #ffffff;
    color: #000000;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ── Footer Section ── */
.site-footer {
    padding: 120px 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    background: #050507;
    margin-top: 0;
    position: relative;
    z-index: 10;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px 80px;
    display: grid;
    grid-template-columns: 1.5fr 1.5fr 1fr 1fr 1fr;
    gap: 60px;
}

.footer-logo {
    font-size: 32px;
    font-weight: 900;
    color: #ffffff;
    letter-spacing: -1.5px;
    margin-bottom: 24px;
}

.footer-logo span {
    color: rgba(255, 255, 255, 0.25);
}

.footer-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-nav a {
    color: rgba(255, 255, 255, 0.4);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer-nav a:hover {
    color: #ffffff;
}

.footer-label {
    display: block;
    font-size: 12px;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.25);
    letter-spacing: 1px;
    margin-bottom: 24px;
}

.payment-icons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    max-width: 250px;
}

.payment-icon {
    flex: 1;
    min-width: 80px;
    height: 48px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.payment-icon:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.15);
    color: #ffffff;
}

.footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-list li {
    margin-bottom: 12px;
}

.footer-list a {
    color: rgba(255, 255, 255, 0.4);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-list a:hover {
    color: #ffffff;
}

.footer-bottom {
    padding: 32px 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: flex-end;
}

.copyright {
    color: rgba(255, 255, 255, 0.2);
    font-size: 13px;
    font-weight: 500;
}

@media (max-width: 1024px) {
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

@media (max-width: 640px) {
    .footer-container {
        grid-template-columns: 1fr;
    }
    .footer-bottom-container {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .navbar { width: 95%; padding: 0 20px; }
    .nav-links { display: none; }
    .footer-content { grid-template-columns: 1fr 1fr; }
}

    opacity: 1;
    background: rgba(255, 255, 255, 0.1);
    transform: scale(1.1);
}

.download-btn {
    width: 100%;
    padding: 14px 24px;
    background: #ffffff;
    color: #0a0a0a;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 12px;
    transition: all 0.3s ease;
    box-shadow:
        0 4px 15px rgba(255, 255, 255, 0.08);
    position: relative;
    overflow: hidden;
}

.download-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.1), transparent);
    transition: left 0.5s;
}

.download-btn:hover::before {
    left: 100%;
}

.download-btn:hover {
    background: #e8e8e8;
    box-shadow:
        0 6px 25px rgba(255, 255, 255, 0.12);
    transform: translateY(-2px);
}

.download-btn:active {
    transform: translateY(0) scale(0.98);
}

.reset-btn {
    width: 100%;
    padding: 12px 24px;
    background: rgba(15, 15, 15, 0.8);
    backdrop-filter: blur(10px);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.reset-btn:hover {
    background: rgba(26, 26, 26, 0.9);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow:
        0 4px 20px rgba(0, 0, 0, 0.3);
    transform: translateY(-2px);
}

/* Discord Section */
.discord-section {
    text-align: center;
}

.discord-status {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin: 24px 0;
}

.checkmark {
    margin-bottom: 8px;
    animation: checkmarkPulse 2s ease-in-out infinite;
    filter: drop-shadow(0 0 10px rgba(16, 185, 129, 0.5));
}

@keyframes checkmarkPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.status-text {
    font-size: 18px;
    font-weight: 600;
    color: #10b981;
    text-shadow: 0 0 10px rgba(16, 185, 129, 0.5);
}

.status-subtext {
    font-size: 14px;
    color: #ffffff;
    opacity: 0.7;
}

.discord-btn {
    width: 100%;
    padding: 14px 24px;
    background: linear-gradient(135deg, #5865F2, #4752C4);
    color: #ffffff;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(88, 101, 242, 0.4);
    position: relative;
    overflow: hidden;
}

.discord-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.discord-btn:hover::before {
    left: 100%;
}

.discord-btn:hover {
    background: linear-gradient(135deg, #4752C4, #3c45a5);
    box-shadow: 0 6px 25px rgba(88, 101, 242, 0.6);
    transform: translateY(-2px);
}

.discord-btn:active {
    transform: translateY(0) scale(0.98);
}

/* Landing Page Styles */
.landing-container {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.landing-logo {
    margin-bottom: 60px;
    text-align: center;
    animation: logoPulse 2s ease-in-out infinite;
}

.welcome-title {
    font-size: 48px;
    font-weight: 700;
    color: #ffffff;
    text-align: center;
    margin-bottom: 24px;
    text-shadow: none;
    animation: fadeInUp 0.8s ease-out;
}

.welcome-tagline {
    font-size: 18px;
    color: #ffffff;
    opacity: 0.8;
    text-align: center;
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 80px;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.cta-btn {
    padding: 14px 32px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
    border: none;
    position: relative;
    overflow: hidden;
}

.cta-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
    transition: left 0.5s;
}

.cta-btn:hover::before {
    left: 100%;
}

.primary-btn {
    background: #ffffff;
    color: #0a0a0a;
    box-shadow:
        0 4px 15px rgba(255, 255, 255, 0.08);
}

.primary-btn:hover {
    background: #e8e8e8;
    box-shadow:
        0 6px 25px rgba(255, 255, 255, 0.12);
    transform: translateY(-2px);
}

.secondary-btn {
    background: rgba(26, 26, 26, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.secondary-btn:hover {
    background: rgba(42, 42, 42, 0.9);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow:
        0 4px 20px rgba(0, 0, 0, 0.3);
    transform: translateY(-2px);
}

.cta-btn:active {
    transform: translateY(0) scale(0.98);
}

.feature-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
    margin-bottom: 80px;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

/* Cheat Preview Container */
.cheat-preview-container {
    width: 100%;
    max-width: 1200px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 40px;
    backdrop-filter: blur(15px);
    margin-top: 40px;
    animation: fadeInUp 1s ease-out 0.8s both;
}

.cheat-preview-header {
    text-align: center;
    margin-bottom: 40px;
}

.cheat-preview-header h2 {
    font-size: 36px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 12px 0;
    background: linear-gradient(135deg, #ffffff, #888888);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cheat-preview-header p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    max-width: 600px;
    margin: 0 auto;
}

.cheat-preview-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.preview-showcase {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.preview-item {
    text-align: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.preview-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.preview-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    margin: 0 auto 12px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.preview-icon svg {
    width: 24px;
    height: 24px;
    color: #ffffff;
}

.preview-item h3 {
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 8px 0;
}

.preview-item p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
    line-height: 1.4;
}

.preview-video-container {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    height: 250px;
}

.preview-video-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 16px;
}

.feature-card {
    background: rgba(16, 16, 20, 0.68);
    backdrop-filter: blur(40px) saturate(160%);
    -webkit-backdrop-filter: blur(40px) saturate(160%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 32px 24px;
    text-align: center;
    transition: all 0.25s ease;
    box-shadow:
        0 0 0 0.5px rgba(255,255,255,0.05) inset,
        0 1px 0 rgba(255,255,255,0.1) inset,
        0 16px 40px rgba(0,0,0,0.45);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 10%;
    width: 80%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.14), transparent);
    pointer-events: none;
}

.feature-card:hover {
    border-color: rgba(255, 255, 255, 0.14);
    box-shadow:
        0 0 0 0.5px rgba(255,255,255,0.08) inset,
        0 1px 0 rgba(255,255,255,0.14) inset,
        0 24px 56px rgba(0,0,0,0.55);
    transform: translateY(-6px);
}

.feature-icon {
    color: #ffffff;
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    filter: none;
    animation: iconFloat 3s ease-in-out infinite;
}

@keyframes iconFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.feature-title {
    font-size: 20px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 12px;
    text-shadow: none;
}

.feature-description {
    font-size: 14px;
    color: #ffffff;
    opacity: 0.7;
    line-height: 1.6;
}


/* Responsive Design */
@media (max-width: 768px) {
    .login-form {
        padding: 32px 24px;
    }

    .dashboard-container {
        padding: 20px 16px;
    }

    .profile-section {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .logout-btn {
        width: 100%;
        justify-content: center;
    }

    .welcome-title {
        font-size: 36px;
    }

    .welcome-tagline {
        font-size: 16px;
        padding: 0 20px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .cta-btn {
        width: 100%;
    }

    .feature-cards {
        grid-template-columns: 1fr;
    }

    .cheat-preview-container {
        padding: 30px 20px;
        margin-top: 30px;
    }

    .cheat-preview-header h2 {
        font-size: 28px;
    }

    .cheat-preview-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .preview-showcase {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .preview-video-container {
        height: 200px;
    }
}

/* Checkbox Styles */
.checkbox-group {
    margin-top: 20px;
    margin-bottom: 12px;
    padding: 0 4px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    user-select: none;
    gap: 12px;
    transition: color 0.2s ease;
}

.checkbox-label:hover {
    color: rgba(255, 255, 255, 1);
}

.checkbox-label input[type="checkbox"] {
    opacity: 0;
    position: absolute;
    cursor: pointer;
}

.checkmark {
    width: 20px;
    height: 20px;
    background-color: rgba(255, 255, 255, 0.08);
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 4px;
    position: relative;
    transition: all 0.2s ease;
    flex-shrink: 0;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.checkbox-label input[type="checkbox"]:checked ~ .checkmark {
    background-color: #10b981;
    border-color: #10b981;
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.2);
}

.checkmark::after {
    content: '';
    position: absolute;
    display: none;
    left: 6px;
    top: 2px;
    width: 5px;
    height: 9px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.checkbox-label input[type="checkbox"]:checked ~ .checkmark::after {
    display: block;
}

.checkbox-label:hover .checkmark {
    border-color: rgba(255, 255, 255, 0.6);
    background-color: rgba(255, 255, 255, 0.12);
}

/* Status Section Styles */
.status-section {
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.status-section h3 {
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.status-section h3::before {
    content: '';
    width: 4px;
    height: 16px;
    background: linear-gradient(135deg, #ffffff, #888888);
    border-radius: 2px;
}

.status-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 12px;
}

.status-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 12px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.status-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

.status-value {
    font-size: 13px;
    color: #ffffff;
    font-weight: 600;
}

.status-active {
    color: #10b981;
}

.status-active::before {
    content: '● ';
    color: #10b981;
}

/* Mobile responsive for status section */
@media (max-width: 768px) {
    .status-grid {
        grid-template-columns: 1fr;
    }

    .status-item {
        padding: 10px 12px;
    }
}

/* ── Features Section ── */
.features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.feature-card-new {
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 20px;
    padding: 48px 32px;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
}

.feature-card-new:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.02);
    border-color: rgba(255, 255, 255, 0.08);
}

.feature-icon-wrap {
    width: 48px;
    height: 48px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    color: rgba(255, 255, 255, 0.6);
    transition: all 0.5s ease;
}

.feature-card-new:hover .feature-icon-wrap {
    background: #ffffff;
    color: #000;
    border-color: #ffffff;
}

.feature-card-new h3 {
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 12px;
}

.feature-card-new p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.6;
}

@media (max-width: 992px) {
    .features {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .features {
        grid-template-columns: 1fr;
    }
}