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

button:focus,
a:focus,
input:focus,
select:focus,
textarea:focus {
    outline: none;
}

:root {
    --bg-dark: #1a1612;
    --bg-brown: #2d2419;
    --bg-brown-warm: #3a2e21;
    --bg-brown-light: #4a3f33;
    --bg-brown-lighter: #5a4d3f;
    --bg-card: rgba(45, 36, 25, 0.65);
    --accent-orange: #ff9505;
    --accent-orange-bright: #ffb627;
    --accent-orange-dark: #e2711d;
    --accent-orange-glow: rgba(255, 149, 5, 0.3);
    --accent-yellow: #ffc971;
    --accent-yellow-glow: rgba(255, 201, 113, 0.2);
    --accent-dark: #cc5803;
    --text-white: #ffffff;
    --text-gray: #e5e5e5;
    --text-gray-light: #b8b8b8;
}

html {
    scroll-behavior: smooth;
}

/* Custom Scrollbar Styles */
/* Webkit browsers (Chrome, Edge, Safari) */
::-webkit-scrollbar {
    width: 12px;
    height: 12px;
}

::-webkit-scrollbar-track {
    background: rgba(30, 25, 20, 0.8);
    border-radius: 6px;
}

::-webkit-scrollbar-thumb {
    background: rgba(45, 36, 25, 0.9);
    border-radius: 6px;
    border: 2px solid rgba(30, 25, 20, 0.8);
    transition: background 0.3s;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 149, 5, 0.6);
    box-shadow: 0 0 10px rgba(255, 149, 5, 0.4);
}

::-webkit-scrollbar-thumb:active {
    background: rgba(255, 149, 5, 0.8);
}

::-webkit-scrollbar-corner {
    background: rgba(30, 25, 20, 0.8);
}

/* Firefox */
* {
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 149, 5, 0.6) rgba(30, 25, 20, 0.8);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: 
        radial-gradient(ellipse 150% 120% at 0% 0%, rgba(255, 149, 5, 0.05) 0%, rgba(255, 149, 5, 0.03) 20%, rgba(255, 149, 5, 0.015) 40%, rgba(255, 149, 5, 0.005) 60%, transparent 80%),
        radial-gradient(ellipse 150% 120% at 100% 100%, rgba(255, 149, 5, 0.05) 0%, rgba(255, 149, 5, 0.03) 20%, rgba(255, 149, 5, 0.015) 40%, rgba(255, 149, 5, 0.005) 60%, transparent 80%),
        radial-gradient(ellipse 120% 150% at 0% 100%, rgba(255, 201, 113, 0.04) 0%, rgba(255, 201, 113, 0.025) 20%, rgba(255, 201, 113, 0.015) 40%, rgba(255, 201, 113, 0.005) 60%, transparent 80%),
        radial-gradient(ellipse 120% 150% at 100% 0%, rgba(255, 201, 113, 0.04) 0%, rgba(255, 201, 113, 0.025) 20%, rgba(255, 201, 113, 0.015) 40%, rgba(255, 201, 113, 0.005) 60%, transparent 80%),
        radial-gradient(ellipse 180% 100% at 50% 30%, rgba(204, 88, 3, 0.1) 0%, rgba(226, 113, 29, 0.07) 20%, rgba(255, 149, 5, 0.05) 40%, rgba(255, 149, 5, 0.025) 60%, rgba(255, 149, 5, 0.01) 80%, transparent 95%),
        radial-gradient(ellipse 180% 100% at 50% 70%, rgba(204, 88, 3, 0.08) 0%, rgba(226, 113, 29, 0.06) 20%, rgba(255, 149, 5, 0.04) 40%, rgba(255, 149, 5, 0.02) 60%, rgba(255, 149, 5, 0.005) 80%, transparent 95%),
        #1a1612;
    background-attachment: fixed;
    min-height: 100vh;
    color: var(--text-white);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(26, 22, 18, 0.4);
    backdrop-filter: blur(25px) saturate(200%);
    -webkit-backdrop-filter: blur(25px) saturate(200%);
    z-index: 1000;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(30, 25, 20, 0.9);
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.logo {
    font-size: 1.4rem;
    font-weight: bold;
    white-space: nowrap;
}

.logo-text-white {
    color: var(--text-white);
}

.logo-text-accent {
    color: var(--accent-orange);
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    flex: 1;
    justify-content: center;
}

.nav-links a {
    color: var(--text-white);
    text-decoration: none;
    font-weight: 400;
    font-size: 0.95rem;
    transition: color 0.3s;
    position: relative;
}

.nav-links a:hover {
    color: var(--accent-orange);
    text-shadow: 0 0 8px var(--accent-orange-glow), 0 0 15px rgba(255, 149, 5, 0.4);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.discord-icon {
    background: rgba(45, 36, 25, 0.8);
    color: var(--text-white);
    padding: 0.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    font-weight: 500;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    outline: none;
}

.discord-icon:hover {
    background: rgba(45, 36, 25, 0.95);
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-1px);
    box-shadow: 0 0 15px rgba(255, 149, 5, 0.2), 0 0 25px rgba(255, 149, 5, 0.15);
}

.btn-dashboard {
    background: rgba(45, 36, 25, 0.8);
    color: var(--text-white);
    padding: 0.5rem 1.25rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    font-weight: 500;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    outline: none;
}

.btn-dashboard:hover {
    background: rgba(45, 36, 25, 0.95);
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-1px);
    box-shadow: 0 0 15px rgba(255, 149, 5, 0.2), 0 0 25px rgba(255, 149, 5, 0.15);
}

.settings-icon {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-white);
    cursor: pointer;
    padding: 0.5rem;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    transition: all 0.3s;
    backdrop-filter: blur(10px);
    outline: none;
}

.settings-icon:hover {
    color: var(--accent-orange);
    background: rgba(255, 149, 5, 0.12);
    border-color: rgba(255, 149, 5, 0.25);
    outline: 2px solid rgba(255, 149, 5, 0.6);
    outline-offset: 2px;
}

.lang-selector {
    background: rgba(45, 36, 25, 0.8);
    color: var(--text-white);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s;
    backdrop-filter: blur(10px);
    min-width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    outline: none;
}

.lang-selector:hover {
    background: rgba(45, 36, 25, 0.95);
    border-color: rgba(255, 255, 255, 0.15);
}

/* Hero Section */
.hero {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 100px 20px 60px;
    background: transparent;
    position: relative;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.hero-accent {
    color: var(--accent-yellow);
    text-shadow: 0 0 12px var(--accent-yellow-glow), 0 0 25px rgba(255, 149, 5, 0.3);
}

.hero-logo-container {
    margin: 2rem 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 200px;
}

.logo-3d-container {
    width: 200px;
    height: 200px;
    position: relative;
    min-height: 200px;
    overflow: visible;
}

.logo-3d-container canvas {
    width: 100% !important;
    height: 100% !important;
    display: block;
    filter: drop-shadow(0 0 15px rgba(204, 88, 3, 0.3)) drop-shadow(0 0 30px rgba(139, 69, 19, 0.25));
}

/* Fallback placeholder styles */
.logo-placeholder-content {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--accent-yellow) 0%, var(--accent-orange) 50%, var(--accent-orange-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 25px var(--accent-yellow-glow), 0 0 45px rgba(255, 149, 5, 0.3), 0 10px 30px rgba(255, 149, 5, 0.35);
    position: relative;
}

.logo-placeholder-text {
    font-size: 2rem;
    font-weight: bold;
    color: var(--text-white);
}

.hero-subtitle {
    font-size: 1rem;
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.65rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 0.9rem;
    outline: none;
}

.btn-primary {
    background: var(--accent-orange);
    color: var(--text-white);
    box-shadow: 0 0 15px var(--accent-orange-glow), 0 4px 12px rgba(255, 149, 5, 0.25);
}

.btn-primary:hover {
    background: var(--accent-orange-bright);
    transform: translateY(-2px);
    box-shadow: 0 0 15px rgba(255, 149, 5, 0.2), 0 0 25px rgba(255, 149, 5, 0.15), 0 4px 12px rgba(255, 149, 5, 0.2);
}

.btn-secondary {
    background: var(--bg-brown-light);
    color: var(--text-white);
}

.btn-secondary:hover {
    background: var(--bg-brown);
    transform: translateY(-2px);
    box-shadow: 0 0 15px rgba(255, 149, 5, 0.2), 0 0 25px rgba(255, 149, 5, 0.15);
}

/* Features Section */
.features {
    padding: 140px 20px;
    background: transparent;
    position: relative;
}

.section-title {
    font-size: 2.25rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 1rem;
}

.section-subtitle {
    text-align: center;
    color: var(--text-gray);
    font-size: 1.1rem;
    margin-bottom: 4rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background: rgba(45, 36, 25, 0.55);
    backdrop-filter: blur(20px);
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s, outline 0.3s;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.04);
    outline: none;
    display: flex;
    flex-direction: column;
}

.feature-card:hover {
    transform: translateY(-5px);
    outline: 2px solid rgba(255, 149, 5, 0.6);
    outline-offset: 2px;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.25) 0%, rgba(255, 255, 255, 0.1) 50%, rgba(255, 255, 255, 0.05) 100%);
    backdrop-filter: blur(20px) saturate(180%) brightness(110%);
    -webkit-backdrop-filter: blur(20px) saturate(180%) brightness(110%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--text-white);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 
        inset 0 1px 2px rgba(255, 255, 255, 0.3),
        inset 0 -1px 2px rgba(0, 0, 0, 0.2),
        0 4px 8px rgba(0, 0, 0, 0.15);
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.feature-icon::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.3) 50%, transparent 70%);
    transform: rotate(45deg);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}


.feature-title {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    min-height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-description {
    color: var(--text-gray-light);
    line-height: 1.6;
    flex: 1;
}

/* File Tree Section */
.file-manager-title {
    font-size: 1.75rem;
    font-weight: bold;
    text-align: center;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    color: var(--text-white);
}

.file-tree-container {
    margin-top: 0;
    background: rgba(35, 30, 25, 0.8);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    overflow: hidden;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.file-tree-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    min-height: 450px;
}

.file-tree-wrapper.show-location {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    padding: 1.5rem;
    align-items: stretch;
}

.code-viewer {
    padding: 1.5rem;
    background: rgba(20, 18, 16, 0.95);
    min-height: 450px;
    max-height: 450px;
    overflow-y: auto;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
}

.code-viewer.slide-left {
    opacity: 1;
    transform: none;
}

.location-result {
    background: rgba(30, 25, 20, 0.95);
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid rgba(255, 149, 5, 0.2);
    animation: fadeInRight 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    min-height: 450px;
    max-height: 450px;
    overflow-y: auto;
}

.location-result-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    flex: 1;
}

.location-result-title {
    font-size: 1.1rem;
    font-weight: bold;
    color: var(--accent-orange);
    margin-bottom: 0.5rem;
}

.location-item {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1rem;
    background: rgba(20, 18, 16, 0.8);
    border-radius: 8px;
    border-left: 3px solid var(--accent-orange);
    font-family: 'Courier New', monospace;
    font-size: 0.875rem;
}

.location-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.location-name {
    color: var(--accent-orange);
    font-weight: 600;
}

.location-coords {
    color: var(--text-gray);
}

.location-map {
    width: 100%;
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid rgba(255, 149, 5, 0.2);
    background: rgba(15, 13, 10, 0.6);
}

.location-map-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.file-tabs {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(25, 22, 18, 0.9);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 0.4rem;
    gap: 0.4rem;
}

.file-tabs-left {
    display: flex;
    gap: 0.4rem;
    overflow-x: auto;
    flex: 1;
}

.find-locations-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.45rem 0.9rem;
    background: var(--accent-orange);
    color: var(--text-white);
    border: none;
    border-radius: 6px;
    font-family: 'Courier New', monospace;
    font-size: 0.75rem;
    cursor: pointer;
    transition: all 0.3s;
    white-space: nowrap;
    box-shadow: 0 0 10px rgba(255, 149, 5, 0.3);
}

.find-locations-btn:hover {
    background: var(--accent-orange-bright);
    box-shadow: 0 0 15px rgba(255, 149, 5, 0.5);
    transform: translateY(-1px);
}

.find-locations-btn:active {
    transform: translateY(0);
}

.find-locations-btn svg {
    width: 16px;
    height: 16px;
    stroke-width: 2.5;
}

.file-tab {
    padding: 0.45rem 0.9rem;
    background: rgba(45, 40, 35, 0.6);
    border-radius: 6px;
    color: var(--text-gray);
    font-family: 'Courier New', monospace;
    font-size: 0.75rem;
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
    border: 1px solid transparent;
}

.file-tab:hover {
    background: rgba(55, 50, 45, 0.8);
    color: var(--text-white);
}

.file-tab.active {
    background: rgba(255, 149, 5, 0.15);
    color: var(--accent-orange);
    border-color: rgba(255, 149, 5, 0.3);
}

.code-content {
    display: none;
}

.code-content.active {
    display: block;
    animation: fadeIn 0.2s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.code-content pre {
    margin: 0;
    padding: 0;
    background: transparent;
    border: none;
    overflow-x: auto;
}

.code-content code {
    display: block;
    color: #d4d4d4;
    font-family: 'Consolas', 'Monaco', 'Courier New', monospace;
    font-size: 0.875rem;
    line-height: 1.6;
    white-space: pre;
    overflow-x: auto;
    tab-size: 4;
}

/* Lua Syntax Highlighting */
.code-content code .comment {
    color: #6a9955;
    font-style: italic;
}

.code-content code .string {
    color: #ce9178;
}

.code-content code .keyword {
    color: #569cd6;
}

.code-content code .function {
    color: #dcdcaa;
}

.code-content code .number {
    color: #b5cea8;
}

/* Responsive */
@media (max-width: 768px) {
    .file-tree-container {
        margin-top: 2rem;
    }
    
    .code-viewer {
        max-height: 350px;
    }
}

/* Authentication Modals */
.auth-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease;
}

.auth-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.auth-modal-content {
    background: rgba(35, 30, 25, 0.95);
    backdrop-filter: blur(20px);
    padding: 2.5rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 149, 5, 0.2);
    width: 90%;
    max-width: 450px;
    position: relative;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.5), 0 0 20px rgba(255, 149, 5, 0.1);
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.auth-close {
    position: absolute;
    right: 1.5rem;
    top: 1.5rem;
    font-size: 2rem;
    color: var(--text-gray);
    cursor: pointer;
    transition: color 0.3s;
    line-height: 1;
}

.auth-close:hover {
    color: var(--accent-orange);
}

.auth-title {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 2rem;
    color: var(--text-white);
    text-align: center;
}

.auth-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.auth-input-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.auth-input-group label {
    color: var(--text-gray);
    font-size: 0.9rem;
    font-weight: 500;
}

.auth-input-group input {
    padding: 0.75rem 1rem;
    background: rgba(20, 18, 16, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: var(--text-white);
    font-size: 0.95rem;
    transition: all 0.3s;
    font-family: inherit;
}

.auth-input-group input:focus {
    outline: none;
    border-color: var(--accent-orange);
    box-shadow: 0 0 10px rgba(255, 149, 5, 0.2);
}

.auth-input-group input::placeholder {
    color: var(--text-gray-light);
}

.auth-submit-btn {
    padding: 0.875rem 2rem;
    background: var(--accent-orange);
    color: var(--text-white);
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 0.5rem;
    box-shadow: 0 0 15px rgba(255, 149, 5, 0.3);
    outline: none;
}

.auth-submit-btn:hover {
    background: var(--accent-orange-bright);
    box-shadow: 0 0 15px rgba(255, 149, 5, 0.2), 0 0 25px rgba(255, 149, 5, 0.15);
    transform: translateY(-2px);
}

.auth-submit-btn:active {
    transform: translateY(0);
}

.auth-switch {
    text-align: center;
    color: var(--text-gray);
    font-size: 0.9rem;
    margin-top: 1rem;
}

.auth-switch a {
    color: var(--accent-orange);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.auth-switch a:hover {
    color: var(--accent-orange-bright);
    text-decoration: underline;
}

.auth-error {
    margin-top: 1rem;
    padding: 0.75rem;
    background: rgba(220, 53, 69, 0.2);
    border: 1px solid rgba(220, 53, 69, 0.4);
    border-radius: 8px;
    color: #ff6b7a;
    font-size: 0.9rem;
    text-align: center;
}

.auth-success {
    margin-top: 1rem;
    padding: 0.75rem;
    background: rgba(40, 167, 69, 0.2);
    border: 1px solid rgba(40, 167, 69, 0.4);
    border-radius: 8px;
    color: #51cf66;
    font-size: 0.9rem;
    text-align: center;
}

/* Pricing Section */
.pricing {
    padding: 140px 20px;
    background: transparent;
    position: relative;
}

.pricing-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.pricing-tab {
    padding: 0.75rem 2rem;
    border-radius: 8px;
    border: none;
    background: var(--bg-brown-light);
    color: var(--text-white);
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
    outline: none;
}

.pricing-tab.active {
    background: var(--accent-orange);
    color: var(--text-white);
    box-shadow: 0 0 12px var(--accent-orange-glow), 0 2px 6px rgba(255, 149, 5, 0.25);
}

.pricing-tab:hover:not(.active) {
    background: var(--bg-card);
    outline: 2px solid rgba(255, 149, 5, 0.6);
    outline-offset: 2px;
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

@media (max-width: 1400px) {
    .pricing-cards {
        grid-template-columns: repeat(4, 1fr);
        gap: 1rem;
    }
}

@media (max-width: 1200px) {
    .pricing-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .pricing-cards {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.pricing-card {
    background: rgba(45, 36, 25, 0.6);
    backdrop-filter: blur(20px);
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    position: relative;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: all 0.3s ease;
    outline: none;
}

.pricing-card-popular {
    border: 2px solid var(--accent-orange);
    box-shadow: 0 0 18px var(--accent-orange-glow), 0 4px 20px rgba(255, 149, 5, 0.3);
}

.pricing-card:hover {
    transform: translateY(-8px);
    outline: 2px solid rgba(255, 149, 5, 0.6);
    outline-offset: 2px;
}

.pricing-card-popular:hover {
    transform: translateY(-8px);
    outline: 2px solid rgba(255, 149, 5, 0.6);
    outline-offset: 2px;
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-orange);
    color: var(--text-white);
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: bold;
    box-shadow: 0 0 12px var(--accent-orange-glow), 0 2px 8px rgba(255, 149, 5, 0.3);
}

.pricing-card-title {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.pricing-card-cta {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--accent-orange);
    margin-bottom: 0.5rem;
    text-shadow: 0 0 8px var(--accent-orange-glow);
}

.pricing-card-subtitle {
    color: var(--text-gray-light);
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

.pricing-features {
    list-style: none;
    text-align: left;
    margin-bottom: 2rem;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: var(--text-white);
}

.pricing-features li svg {
    color: var(--accent-orange);
    flex-shrink: 0;
    filter: drop-shadow(0 0 4px var(--accent-orange-glow));
}

.btn-pricing {
    width: 100%;
    justify-content: center;
    background: var(--accent-orange);
    color: var(--text-white);
    box-shadow: 0 0 12px var(--accent-orange-glow), 0 4px 10px rgba(255, 149, 5, 0.25);
    outline: none;
}

.btn-pricing:hover {
    background: var(--accent-orange-bright);
    transform: translateY(-2px);
    box-shadow: 0 0 15px rgba(255, 149, 5, 0.2), 0 0 25px rgba(255, 149, 5, 0.15), 0 4px 12px rgba(255, 149, 5, 0.2);
}

/* FAQ Section */
.faq {
    padding: 140px 20px;
    background: transparent;
    position: relative;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(45, 36, 25, 0.55);
    backdrop-filter: blur(20px);
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.04);
}

.faq-question {
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 500;
    transition: background 0.3s;
    outline: none;
}

.faq-question:hover {
    background: rgba(255, 149, 5, 0.08);
    outline: 2px solid rgba(255, 149, 5, 0.6);
    outline-offset: 2px;
}

.faq-chevron {
    color: var(--accent-orange);
    transition: transform 0.3s;
    flex-shrink: 0;
    filter: drop-shadow(0 0 4px var(--accent-orange-glow));
}

.faq-item.active .faq-chevron {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s;
    padding: 0 1.5rem;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 1.5rem 1.5rem;
}

.faq-answer p {
    color: var(--text-gray-light);
    line-height: 1.6;
}

/* Partners Section */
.partners {
    padding: 140px 20px;
    background: transparent;
    position: relative;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.partner-card {
    background: rgba(45, 36, 25, 0.55);
    backdrop-filter: blur(20px);
    padding: 2.5rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.25);
    transition: transform 0.3s, box-shadow 0.3s, outline 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.04);
    outline: none;
}

.partner-card:hover {
    transform: translateY(-5px);
    outline: 2px solid rgba(255, 149, 5, 0.6);
    outline-offset: 2px;
}

.partner-logo {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
}

.partner-logo-placeholder {
    width: 100px;
    height: 100px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: bold;
    color: var(--text-white);
}

.partner-logo-placeholder.macho {
    background: linear-gradient(135deg, #ff6b9d 0%, #c44569 100%);
}

.partner-logo-placeholder.cheat {
    background: linear-gradient(135deg, #4ecdc4 0%, #2ecc71 100%);
}

.partner-name {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.partner-description {
    color: var(--text-gray-light);
    line-height: 1.6;
}

/* Footer */
.footer {
    padding: 60px 20px 30px;
    background: rgba(26, 22, 18, 0.4);
    backdrop-filter: blur(25px) saturate(200%);
    -webkit-backdrop-filter: blur(25px) saturate(200%);
    border-top: 1px solid rgba(255, 149, 5, 0.15);
    position: relative;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-title {
    color: var(--accent-orange);
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 1rem;
    text-shadow: 0 0 6px var(--accent-orange-glow);
}

.footer-description {
    color: var(--text-gray-light);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icons a {
    color: var(--text-white);
    transition: color 0.3s;
}

.social-icons a:hover {
    color: var(--accent-orange);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: var(--text-gray-light);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--accent-orange);
}

.footer-copyright {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 149, 5, 0.1);
    color: var(--text-gray-light);
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-wrapper {
        flex-wrap: wrap;
    }

    .nav-links {
        order: 3;
        width: 100%;
        justify-content: center;
        margin-top: 1rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .features-grid,
    .pricing-cards,
    .partners-grid {
        grid-template-columns: 1fr;
    }

    .pricing-tabs {
        flex-direction: column;
        align-items: stretch;
    }

    .pricing-tab {
        width: 100%;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

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

    .nav-actions {
        gap: 0.5rem;
    }

    .btn-dashboard,
    .lang-selector {
        padding: 0.5rem 1rem;
        font-size: 0.875rem;
    }
}

/* Reveal Animations */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

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

/* Staggered animation delays for multiple elements */
.reveal:nth-child(1) { transition-delay: 0.1s; }
.reveal:nth-child(2) { transition-delay: 0.2s; }
.reveal:nth-child(3) { transition-delay: 0.3s; }
.reveal:nth-child(4) { transition-delay: 0.4s; }
.reveal:nth-child(5) { transition-delay: 0.5s; }
.reveal:nth-child(6) { transition-delay: 0.6s; }

/* Hero elements reveal on page load */
.hero-reveal {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease-out forwards;
}

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

.hero-reveal:nth-child(1) { animation-delay: 0.2s; }
.hero-reveal:nth-child(2) { animation-delay: 0.4s; }
.hero-reveal:nth-child(3) { animation-delay: 0.6s; }
.hero-reveal:nth-child(4) { animation-delay: 0.8s; }

