:root {
    --primary-color: #ff8c00;
    --secondary-color: #ff4500;
    --bg-dark: #0a0a0a;
    --text-light: #f5f5f5;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    cursor: none; /* Ascundem cursorul default pe tot site-ul */
}

html {
    scroll-behavior: smooth;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #000;
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 5px;
    border: 2px solid #000;
}

::-webkit-scrollbar-thumb:hover {
    background: #ffae42;
}

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

/* The Fixed Background */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('assets/background.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -2;
}

/* Gradient Overlay */
.background-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.9) 0%, rgba(10, 10, 10, 0.6) 50%, rgba(10, 10, 10, 0.9) 100%);
    z-index: -1;
}

/* Navigation */
header {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1rem 5%;
    z-index: 1000;
    backdrop-filter: blur(15px);
    background: rgba(10, 10, 10, 0.7);
    border-bottom: 1px solid var(--glass-border);
}

#navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.logo img {
    height: 50px;
    width: auto;
    display: block;
    transition: transform 0.3s;
}

.logo img:hover {
    transform: scale(1.05);
}

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

nav ul li a {
    text-decoration: none;
    color: var(--text-light);
    font-weight: 500;
    transition: 0.3s;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

nav ul li a:hover, nav ul li a.active {
    color: var(--primary-color);
}

.btn-connect {
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    padding: 0.7rem 1.5rem;
    border-radius: 5px;
    font-weight: 700 !important;
}

/* Social Icons */
.social-icons {
    display: flex;
    gap: 1.2rem;
    align-items: center;
}

.social-icons a {
    color: var(--text-light);
    transition: 0.3s;
    display: flex;
    align-items: center;
}

.social-icons svg {
    width: 20px;
    height: 20px;
}

.social-icons a:hover {
    color: var(--primary-color);
    transform: translateY(-3px);
}

/* Auth Links */
.auth-links {
    display: flex;
    gap: 1rem;
    align-items: center;
    margin-left: 1rem;
    padding-left: 1rem;
    border-left: 1px solid var(--glass-border);
}

.login-link {
    color: var(--text-light) !important;
    font-weight: 600 !important;
    font-size: 0.9rem !important;
}

.register-link {
    color: var(--text-light) !important;
    font-weight: 600 !important;
    font-size: 0.9rem !important;
    padding: 0.6rem 1rem;
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    transition: var(--transition);
}

.register-link:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--primary-color);
    color: var(--primary-color) !important;
}
.hero {
    min-height: 100vh;
    padding: 12rem 5% 5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-btns {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 2rem;
}

.primary-btn {
    background: var(--primary-gradient);
    color: white;
    padding: 15px 30px;
    border-radius: 10px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(255, 145, 0, 0.3);
}

.secondary-btn {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    padding: 15px 30px;
    border-radius: 10px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
}

.hero-content h1 {
    font-size: clamp(3rem, 10vw, 6rem);
    font-weight: 900;
    margin-bottom: 1rem;
    text-shadow: 0 10px 30px rgba(0,0,0,0.5);
    letter-spacing: -2px;
}

.hero-content p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 2.5rem;
    opacity: 0.9;
}

.hero-btns {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.primary-btn, .secondary-btn {
    padding: 1rem 2.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.4s;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.primary-btn {
    background: var(--primary-color);
    color: white;
    box-shadow: 0 10px 20px rgba(255, 140, 0, 0.3);
}

.primary-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(255, 140, 0, 0.5);
}

.secondary-btn {
    background: var(--glass-bg);
    color: white;
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(5px);
}

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

/* Content Section */
.content-section {
    padding: 10rem 15%;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
}

.card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 3rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.card h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

/* Rules Styling */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.rules-container {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.chapter-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 2rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--primary-color);
    color: var(--text-light);
    letter-spacing: 1px;
}

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

.rule-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 15px;
    padding: 1.5rem 2rem;
    backdrop-filter: blur(5px);
    transition: 0.3s ease;
}

.rule-card:hover {
    transform: translateX(10px);
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--primary-color);
}

.rule-header {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 10px;
}

.rule-header span {
    opacity: 0.5;
    font-size: 1rem;
}

/* Eliminat stil vechi redundant */

.rule-body p {
    margin-bottom: 1rem;
    opacity: 0.9;
}

.rule-body ul {
    list-style: none;
    padding-left: 0;
}

.rule-body li {
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.rule-body li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

.example {
    background: rgba(0, 0, 0, 0.3);
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    border-left: 3px solid #4a90e2;
}

.example strong {
    color: #4a90e2;
    display: block;
    margin-bottom: 0.5rem;
}

.example ul {
    list-style: none;
    padding-left: 0.5rem;
}

.example li {
    margin-bottom: 0.3rem;
    position: relative;
    padding-left: 1.2rem;
}

.example li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #4a90e2;
}

.punishment {
    background: rgba(255, 69, 0, 0.1);
    padding: 1rem;
    border-radius: 8px;
    font-size: 0.9rem;
    border-left: 3px solid var(--secondary-color);
}

.punishment strong {
    color: var(--secondary-color);
    display: block;
    margin-bottom: 0.5rem;
}

.note {
    background: rgba(255, 140, 0, 0.1);
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    border-left: 3px solid var(--primary-color);
}

.note strong {
    color: var(--primary-color);
    display: block;
    margin-bottom: 0.5rem;
}

/* Footer & Disclaimer */
footer {
    text-align: center;
    padding: 3rem 5%;
    background: rgba(0,0,0,0.8);
    border-top: 1px solid var(--glass-border);
}

.disclaimer {
    max-width: 1000px;
    margin: 0 auto 2rem;
    font-size: 0.75rem;
    opacity: 0.6;
    line-height: 1.4;
    text-align: justify;
}

.disclaimer p {
    margin-bottom: 0.5rem;
}

/* Lateral Artwork Placeholders */
/* Modal Styles - Premium Centered Design */
.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
}

.modal-content {
    background: rgba(15, 15, 15, 0.95);
    margin: 10vh auto;
    padding: 3rem;
    border: 1px solid var(--glass-border);
    border-radius: 30px;
    width: 90%;
    max-width: 600px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
    position: relative;
    animation: modalFadeIn 0.4s ease-out;
}

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

.modal-header h3 {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.modal-form input, .modal-form textarea {
    width: 100%;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.03); /* Dark glass instead of basic white */
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    color: white;
    font-family: inherit;
    margin-bottom: 1.5rem;
    transition: 0.3s;
    font-size: 1rem;
}

.modal-form input:focus, .modal-form textarea:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--primary-color);
    box-shadow: 0 0 20px rgba(255, 140, 0, 0.15);
}

.modal-form label {
    display: block;
    margin-bottom: 0.8rem;
    font-weight: 700;
    color: rgba(255,255,255,0.6);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-left: 5px;
}

.modal-footer-btns {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}
/* Fixed Artwork Bottom Right */
.fixed-artwork-bottom {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 200px;
    height: auto;
    z-index: 100;
    pointer-events: none;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.fixed-artwork-bottom:hover {
    opacity: 1;
}

.fixed-artwork-bottom img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    border: 1px solid var(--glass-border);
}

/* Social Media Section */
.social-btns-container {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.social-big-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
    width: 200px;
    padding: 30px;
    background: var(--card-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    color: white;
    text-decoration: none;
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.social-big-btn svg {
    transition: transform 0.3s ease;
}

.social-big-btn:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.1);
}

.social-big-btn:hover svg {
    transform: scale(1.2);
}

.social-big-btn.youtube:hover {
    border-color: #FF0000;
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.2);
}

.social-big-btn.tiktok:hover {
    border-color: #00f2ea;
    box-shadow: 0 0 20px rgba(0, 242, 234, 0.2);
}

.social-big-btn span {
    font-weight: 600;
    font-size: 1.1rem;
    letter-spacing: 1px;
}

/* Custom Cursor - Stylized Gaming Pointer */
.cursor-dot {
    width: 25px;
    height: 25px;
    background: none;
    border: none;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 20000; /* Peste modal (care are 10000) */
    pointer-events: none;
}

.cursor-dot::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--primary-color);
    clip-path: polygon(0% 0%, 100% 50%, 0% 100%, 25% 50%);
    transform: rotate(-30deg);
}

.cursor-outline {
    display: none; /* Scoatem cercul, rămânem doar cu săgeata */
}

/* Hover effect */
.cursor-hover .cursor-dot::after {
    background-color: white;
    transform: rotate(-30deg) scale(1.2);
}

/* Media query pentru a dezactiva pe mobile */
/* Media query pentru a dezactiva pe mobile */
@media (max-width: 768px) {
    * { cursor: auto !important; }
    .cursor-dot, .cursor-outline { display: none !important; }

    header {
        padding: 0.5rem 3%;
    }

    #navbar {
        flex-direction: column;
        gap: 1rem;
    }

    nav ul {
        gap: 1rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    nav ul li a {
        font-size: 0.75rem;
    }

    .social-icons {
        display: none;
    }

    .hero {
        padding-top: 15rem;
    }

    .hero-content h1 {
        font-size: 3rem;
    }

    .hero-btns {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
        margin: 2rem auto;
    }

    .content-section {
        padding: 5rem 5%;
    }

    .card {
        padding: 1.5rem;
    }

    .fixed-artwork-bottom {
        width: 120px;
        bottom: 10px;
        right: 10px;
    }
}
