:root {
    --bg-primary: #0A0A0B;
    --accent-primary: #FF8C69;
    --accent-dark: #FF4E50;
    --text-primary: #FFFFFF;
    --text-secondary: #CED4DA;
    --gradient-primary: linear-gradient(135deg, #FF8C69 0%, #FF4E50 100%);
    --card-bg: rgba(255, 255, 255, 0.03);
    --card-border: rgba(255, 255, 255, 0.08);
}

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

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5rem;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(10, 10, 11, 0.7);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--card-border);
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-img {
    height: 60px;
    width: 60px;
    object-fit: cover;
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(255, 140, 105, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -1px;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

nav ul li a {
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 500;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: var(--text-primary);
}

.discord-btn {
    padding: 0.6rem 1.4rem;
    background: var(--gradient-primary);
    border-radius: 50px;
    color: white !important;
    font-weight: 700 !important;
    transition: transform 0.3s ease, box-shadow 0.3s ease !important;
}

.login-nav-btn {
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 500;
}

.login-nav-btn:hover {
    color: var(--text-primary);
}

.discord-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(255, 78, 80, 0.4);
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    padding-left: 5rem;
    position: relative;
    overflow: hidden;
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('woman.png');
    background-size: cover;
    background-position: center;
}

.hero-content {
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    padding: 3rem;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.hero-content h1 {
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    max-width: 800px;
}

.hero-content p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin-bottom: 2.5rem;
}

.accent {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
}

.btn {
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 10px 30px rgba(255, 78, 80, 0.2);
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 40px rgba(255, 78, 80, 0.4);
}

.btn-secondary {
    background: rgba(255,255,255,0.05);
    color: white;
    border: 1px solid var(--card-border);
}

.btn-secondary:hover {
    background: rgba(255,255,255,0.1);
}

.background-glow {
    position: absolute;
    top: 50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 140, 105, 0.15) 0%, transparent 70%);
    filter: blur(100px);
    pointer-events: none;
    z-index: -1;
}

/* About Section */
.about {
    padding: 10rem 5rem;
    background: linear-gradient(180deg, var(--bg-primary) 0%, #151518 100%);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

h2 {
    font-size: 3rem;
    margin-bottom: 4rem;
    font-weight: 800;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
}

.about-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    padding: 3rem;
    border-radius: 24px;
    transition: transform 0.4s ease, background 0.4s ease;
}

.about-card:hover {
    background: rgba(255,255,255,0.06);
    transform: translateY(-10px);
    border-color: rgba(255, 140, 105, 0.2);
}

.about-card h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: var(--accent-primary);
}

.icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

/* Stats Bar */
.stats-bar {
    display: flex;
    justify-content: center;
    gap: 5rem;
    margin-bottom: 6rem;
    text-align: center;
}

.stat-num {
    display: block;
    font-size: 4rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-label {
    font-size: 1.1rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.live-dot {
    width: 8px;
    height: 8px;
    background: #2ecc71;
    border-radius: 50%;
    box-shadow: 0 0 10px #2ecc71;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.5); opacity: 0.5; }
    100% { transform: scale(1); opacity: 1; }
}

/* Features Section */
.features {
    padding: 10rem 5rem;
}

.feature-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.feature-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-primary);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.feature-text h3 {
    margin-bottom: 1rem;
}

/* Modals */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 11, 0.85);
    backdrop-filter: blur(10px);
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: #151518;
    border: 1px solid var(--card-border);
    padding: 3rem;
    border-radius: 30px;
    width: 100%;
    max-width: 450px;
    text-align: center;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5);
}

.modal-content h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
}

.input-group {
    text-align: left;
    margin-bottom: 1.5rem;
}

.input-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-secondary);
}

.input-group input {
    width: 100%;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--card-border);
    border-radius: 12px;
    color: white;
    font-size: 1rem;
    outline: none;
}

.input-group input:focus {
    border-color: var(--accent-primary);
}

.close-btn {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 2rem;
    cursor: pointer;
    color: var(--text-secondary);
}

.error-msg {
    color: #ff4e50;
    margin-top: 1rem;
    font-size: 0.9rem;
}

.admin-dashboard-container {
    display: flex;
    background: #0A0A0B;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    position: relative;
}

.admin-sidebar {
    width: 300px;
    background: #111113;
    padding: 3rem 2rem;
    display: flex;
    flex-direction: column;
    border-right: 1px solid var(--card-border);
}

.sidebar-header {
    margin-bottom: 3.5rem;
}

.sidebar-nav {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.nav-btn {
    padding: 1.25rem 1.5rem;
    background: transparent;
    border: none;
    color: var(--text-secondary);
    text-align: left;
    font-size: 1.1rem;
    cursor: pointer;
    border-radius: 12px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav-btn.active, .nav-btn:hover {
    background: rgba(255, 140, 105, 0.1);
    color: var(--accent-primary);
}

.admin-content {
    flex-grow: 1;
    padding: 5rem 6rem;
    overflow-y: auto;
    position: relative;
    text-align: left;
    background: radial-gradient(circle at top right, rgba(255,140,105,0.03), transparent);
}

.exclusive {
    padding: 10rem 5rem;
    background: #0A0A0B;
}

.exclusive-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.exclusive-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
    text-decoration: none;
    color: white;
}

.exclusive-card:hover {
    transform: perspective(1000px) rotateX(5deg) scale(1.02);
    border-color: var(--accent-primary);
    box-shadow: 0 20px 40px rgba(255, 140, 105, 0.15);
}

.exclusive-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    filter: brightness(0.8);
    transition: filter 0.4s ease;
}

.exclusive-card:hover .exclusive-img {
    filter: brightness(1.1);
}

.exclusive-info {
    padding: 2rem;
    background: rgba(0,0,0,0.4);
}

.exclusive-info h3 {
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.exclusive-info p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.bypasser {
    padding: 10rem 5rem;
    background: linear-gradient(180deg, #0A0A0B 0%, #111113 100%);
}

.bypass-box {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    padding: 5rem;
    border-radius: 40px;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.bypass-box p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    color: var(--text-secondary);
}

.bypass-input-group {
    display: flex;
    gap: 1rem;
    margin-bottom: 4rem;
}

.bypass-input-group input {
    flex-grow: 1;
    padding: 1.25rem 2rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--card-border);
    border-radius: 50px;
    color: white;
    font-size: 1.1rem;
    outline: none;
    transition: all 0.3s ease;
}

.bypass-input-group input:focus {
    border-color: var(--accent-primary);
    background: rgba(255, 255, 255, 0.05);
}

.bypass-result-card {
    background: rgba(0, 0, 0, 0.4);
    border: 1px dashed var(--card-border);
    padding: 3rem;
    border-radius: 20px;
    display: none;
    animation: fadeIn 0.5s ease-out;
}

.result-content {
    display: none;
}

.result-content a {
    color: var(--accent-primary);
    font-size: 1.5rem;
    font-weight: 700;
    text-decoration: underline;
}

.loader {
    width: 30px;
    height: 30px;
    border: 3px solid rgba(255, 140, 105, 0.2);
    border-top: 3px solid var(--accent-primary);
    border-radius: 50%;
    display: none;
    margin: 0 auto;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.admin-section {
    display: none;
}

.admin-section.active {
    display: block;
}

.admin-content h2 {
    font-size: 2.25rem;
    margin-bottom: 2.5rem;
    color: white;
}

.admin-form-group {
    margin-bottom: 2rem;
}

.admin-form-group label {
    display: block;
    margin-bottom: 0.75rem;
    color: var(--text-secondary);
    font-weight: 600;
}

.admin-form-group input, .admin-form-group textarea {
    width: 100%;
    padding: 1.25rem;
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--card-border);
    border-radius: 15px;
    color: white;
    font-size: 1rem;
}

.admin-form-group textarea {
    height: 120px;
    resize: none;
}

.log-entry {
    background: rgba(0,0,0,0.2);
    padding: 1rem;
    border-radius: 10px;
    margin-bottom: 0.75rem;
    font-family: monospace;
    font-size: 0.9rem;
}

.inline-form {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.inline-form input {
    flex: 1;
}

.manage-list {
    margin-top: 2rem;
}

.manage-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem;
    background: rgba(255,255,255,0.02);
    border: 1px solid var(--card-border);
    border-radius: 15px;
    margin-bottom: 1rem;
}

.manage-item img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 10px;
    margin-right: 1.5rem;
}

.remove-btn {
    padding: 0.5rem 1rem;
    background: rgba(255, 0, 0, 0.1);
    color: #ff4e50;
    border: 1px solid rgba(255, 0, 0, 0.1);
    border-radius: 8px;
    cursor: pointer;
}

.hint {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-top: -2rem;
    margin-bottom: 2rem;
}

#logout-btn {
    padding: 1.25rem;
    background: rgba(255, 78, 80, 0.05);
    color: #ff4e50;
    border: 1px solid rgba(255, 78, 80, 0.1);
    border-radius: 12px;
    cursor: pointer;
    width: 100%;
    font-weight: 700;
    transition: all 0.3s ease;
}

#logout-btn:hover {
    background: rgba(255, 78, 80, 0.15);
    transform: scale(0.98);
}

.join-banner {
    background: var(--gradient-primary);
    padding: 6rem;
    border-radius: 40px;
    text-align: center;
    color: white;
    box-shadow: 0 40px 100px rgba(255, 78, 80, 0.25);
}

.join-banner h2 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    margin-top: 0;
}

.join-banner p {
    font-size: 1.35rem;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-inline: auto;
    opacity: 0.9;
}

.btn-large {
    padding: 1.25rem 3rem;
    background: white;
    color: #111;
    font-size: 1.25rem;
}

.btn-large:hover {
    background: #f8f8f8;
    transform: scale(1.05);
}

/* Footer */
footer {
    padding: 4rem 5rem;
    background: #050506;
    border-top: 1px solid var(--card-border);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-secondary);
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s forwards ease-out;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }

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

.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 1024px) {
    .navbar { padding: 1.5rem 2rem; }
    .hero { padding-left: 2rem; }
    .hero-content h1 { font-size: 3.5rem; }
    .about-grid { grid-template-columns: 1fr; }
    .join-banner { padding: 4rem 2rem; }
    .join-banner h2 { font-size: 2.5rem; }
}
