:root {
    --bg-main: #090506;
    --bg-dark: #050304;
    --accent-orange: #f58a1f;
    --accent-red: #bf1f26;
    --text-main: #ffffff;
    --text-muted: #e3d6c7;
    --max-width: 1200px;
}

/* Reset simplu */
*,
*::before,
*::after {
    box-sizing: border-box;
}

/* NOU: facem pagina full height + layout flex vertical */
html {
    height: 100%;
}

body {
    margin: 0;
    min-height: 100vh;          /* pagina cel puțin cât viewport-ul */
    display: flex;              /* flex layout pe verticală */
    flex-direction: column;

    font-family: "Merriweather", serif;
    background: var(--bg-main);
    color: var(--text-main);
}


/* ================= NAVBAR ================= */

.top-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 64px;
    background: #000000;
    z-index: 50;
}

.nav-inner {
    max-width: var(--max-width);
    height: 100%;
    margin: 0 auto;
    padding: 0 20px;

    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Brand / Logo */

.brand {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    line-height: 1;
}

.brand-title {
    font-family: "Alfa Slab One", cursive;
    font-size: 1.1rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent-orange);
}

.brand-sub {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--text-muted);
}

/* Meniu centru */

.main-menu {
    display: flex;
    gap: 26px;
    text-transform: uppercase;
    font-size: 0.78rem;
    letter-spacing: 0.16em;
}

.main-menu a {
    text-decoration: none;
    color: #f5f5f5;
    position: relative;
    padding-bottom: 3px;
    transition: color 0.2s ease;
}

.main-menu a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: var(--accent-orange);
    transition: width 0.2s ease;
}

.main-menu a:hover {
    color: var(--accent-orange);
}

.main-menu a:hover::after {
    width: 100%;
}

/* Dreapta: user + social */

.nav-right {
    display: flex;
    align-items: center;
    gap: 14px;
}

/* LOGIN pill */

.login-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 16px;
    border-radius: 999px;
    border: 1px solid var(--accent-orange);
    text-decoration: none;
    color: #f5f5f5;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-weight: 700;
    background: transparent;
    transition: 0.2s;
}

.login-pill i {
    font-size: 0.9rem;
    color: var(--accent-orange);
}

.login-pill:hover {
    background: var(--accent-orange);
    color: #000;
    box-shadow: 0 0 15px rgba(245, 138, 31, 0.5);
}

.login-pill:hover i {
    color: #000;
}

/* social */
.social-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;

    margin-left: 12px;
    text-decoration: none;

    background: none;
    border: 2px solid rgba(255,255,255,.2);
    overflow: hidden;

    transition: 0.25s ease;
}

/* Icon image */
.social-icon img {
    width: 65%;   /* îl face exact cât trebuie */
    height: 65%;
    object-fit: contain;
    filter: brightness(1.4); /* îl face mai vizibil pe fundal negru */
}

/* Culori border */
.social-tiktok {
    border-color: #00f2ea;
}

.social-youtube {
    border-color: #ff0000;
}

/* Hover */
.social-icon:hover {
    transform: translateY(-3px) scale(1.09);
    box-shadow: 0 0 12px rgba(255,255,255,0.15);
}

/* User menu */

/* containerul buton + dropdown */
.user-menu {
    position: relative;
    display: inline-block;
}

/* numele jucătorului */
.user-name {
    cursor: pointer;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
}

/* dropdown inițial ascuns */
.user-dropdown {
    position: absolute;
    top: 100%;               /* fără spațiu mort */
    right: 0;

    min-width: 180px;
    background: #0b0b0b;
    border: 1px solid #f39a2f;
    border-radius: 10px;
    padding: 12px 16px;

    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    transform: translateY(10px);   /* îl coborâm vizual */
    transition: opacity .15s ease, transform .15s ease;
}


/* linkuri din dropdown */
.user-dropdown a {
    display: block;
    padding: 6px 0;
    color: #fff;
    text-decoration: none;
    font-size: 13px;
}

.user-dropdown a:hover {
    color: #f39a2f;
}

/* IMPORTANT: meniu deschis cât timp e hover pe TOT .user-menu */
.user-menu:hover .user-dropdown,
.user-menu:focus-within .user-dropdown {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}


/* ================= HERO ================= */

.hero {
    background: var(--bg-dark);
    padding: 110px 20px 80px; /* 110 pentru navbar fix */
}

.hero-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
    gap: 40px;
    align-items: center;
}

.hero-kicker {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--accent-orange);
    margin: 0 0 12px;
}

.hero-title {
    font-family: "Alfa Slab One", cursive;
    font-size: clamp(2.4rem, 3.4vw, 3.2rem);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin: 0 0 16px;
}

.hero-title span {
    color: #ffffff;
}

.hero-text {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-muted);
    max-width: 520px;
    margin-bottom: 26px;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

/* Butoane */
/* BUTON DISCORD SPECIAL */
.btn-discord {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 10px;
    padding: 12px 28px;

    background: #5865F2; /* Discord Blue */
    color: #fff;
    text-decoration: none;

    border-radius: 999px;
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.14em;

    box-shadow: 0 0 18px rgba(88, 101, 242, 0.45);

    transition: 
        transform 0.18s ease,
        box-shadow 0.18s ease,
        filter 0.18s ease;
}

.btn-discord i {
    font-size: 1.3rem;
}

.btn-discord:hover {
    transform: translateY(-3px);
    filter: brightness(1.1);
    box-shadow: 0 0 28px rgba(88, 101, 242, 0.7);
}


.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 170px;
    padding: 10px 24px;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    border-radius: 999px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    color: #000;
    box-shadow: 0 6px 18px rgba(0,0,0,0.5);
    transition: transform 0.15s ease, box-shadow 0.15s ease, filter 0.15s ease;
}

.btn-orange {
    background: var(--accent-orange);
}

.btn-blue {
    background: var(--accent-blue);
    color: #0034df;
}

.btn:hover {
    transform: translateY(-2px);
    filter: brightness(1.05);
    box-shadow: 0 10px 26px rgba(0,0,0,0.7);
}

/* imagine dreapta */

.hero-right img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Secțiuni placeholder */

.placeholder-section {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 60px 20px;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 900px) {
    .nav-inner {
        justify-content: space-between;
        gap: 10px;
    }

    .main-menu {
        display: none; /* meniu mobil se poate face ulterior */
    }

    .hero-inner {
        grid-template-columns: minmax(0, 1fr);
        text-align: center;
    }

    .hero-text {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-right {
        order: -1;
    }
}
/* ================= FOOTER ================= */

.site-footer {
    margin-top: auto;  /* împinge footerul la baza paginii când conținutul e mic */
    background: #050304;
    border-top: 1px solid rgba(245, 138, 31, 0.35);
    padding: 30px 20px 16px;
    color: var(--text-muted);
    font-size: 0.85rem;
}


.footer-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.4fr 1fr 1.2fr;
    gap: 32px;
    align-items: flex-start;
}

.footer-col h4 {
    margin: 0 0 10px;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: #fff;
}

.footer-text {
    margin: 0;
    line-height: 1.6;
}

.footer-text.small {
    font-size: 0.8rem;
    margin-top: 8px;
}

/* Brand în footer */

.footer-logo {
    display: flex;
    flex-direction: column;
    margin-bottom: 8px;
}

.footer-brand-title {
    font-family: "Alfa Slab One", cursive;
    font-size: 1rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--accent-orange);
}

.footer-brand-sub {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--text-muted);
}

/* Link-uri */

.footer-links a {
    display: block;
    margin-bottom: 4px;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.84rem;
}

.footer-links a:hover {
    color: var(--accent-orange);
}

/* Social în footer – reuse social-icon */

.footer-social-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 4px;
}

/* Bara de jos */

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.15); /* linia */
    width: 100%;              /* FULL WIDTH */
    padding: 12px 0;
    margin-top: 20px;

    display: flex;
    justify-content: space-between;
    align-items: center;
}


.footer-bottom-right {
    opacity: 0.85;
}

.footer-heart {
    color: #ff4d6a;
}

/* Responsive footer */

@media (max-width: 900px) {
    .footer-inner {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .site-footer {
        padding-top: 26px;
    }
}


/* ===== SECȚIUNI FULL WIDTH PE HÂRTIE ===== */
/* ===== SECTIUNI FEATURE (DOWNLOAD, GANG, FARM, RP) ===== */

/* Toată secțiunea = foaie veche, full width */
.section-feature {
    padding: 90px 0; /* doar sus / jos */
    background: url("image/paper-bg-3.jpg") center/cover no-repeat;
}

/* dacă vrei, poți schimba nuanța la cele pare */
/*
.section-feature:nth-of-type(even) {
    filter: brightness(0.97);
}
*/

/* CONȚINUTUL – se întinde pe toată lățimea, aliniat la stânga */
.section-inner {
    width: 100%;
    max-width: 100%;      /* NU mai limităm la 1200px */
    margin: 0;            /* NU mai centrat */
    padding: 40px 7vw 60px;  /* spațiu stânga/dreapta în procente din ecran */

    box-sizing: border-box;
}

/* tot ce e înăuntru e aliniat la stânga */
.section-inner * {
    text-align: left;
}

/* mic text deasupra titlului */
.section-kicker {
    display: inline-block;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    color: #4b260c;
    margin-bottom: 10px;
}

/* titlurile mari din secțiuni */
.section-title-big {
    font-family: "Alfa Slab One", cursive;
    font-size: 2.4rem;
    margin: 0 0 16px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #3a1a05;
    text-shadow: 0 2px 3px rgba(255,255,255,0.4);
}

/* textul principal */
.section-text {
    color: #3b2412;
    line-height: 1.9;
    font-size: 1rem;
    margin-bottom: 18px;
    max-width: 100%;  /* se poate întinde cât vrea */
}

/* listă cu bullet personalizat */
.section-list {
    list-style: none;
    padding: 0;
    margin: 8px 0 0;
}

.section-list li {
    position: relative;
    padding-left: 22px;
    margin-bottom: 6px;
    color: #2b170c;
    font-size: 0.98rem;
    font-weight: 500;
}

.section-list li::before {
    content: "✦";
    position: absolute;
    left: 0;
    top: 2px;
    font-size: 0.7rem;
    color: #b25408;
}

/* butoane */
.section-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 20px;
}

/* responsive */
@media (max-width: 900px) {
    .section-feature {
        padding: 60px 0;
    }

    .section-inner {
        padding: 30px 16px 40px;
    }

    .section-title-big {
        font-size: 1.8rem;
    }
}


/* ===== ABOUT SECTION – POZA STANGA + TEXT DREAPTA ===== */

.section-about {
    padding: 80px 20px 70px;
    background: #050304;
    border-top: 1px solid rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.about-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
    gap: 40px;
    align-items: center;
}

/* Imaginea cu efect de cadru "old" */

.about-image {
    position: relative;
}

.about-image img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 6px;
    filter: saturate(0.9);
}

/* Rama "old" peste poză – aici poți schimba imaginea de cadru */

.old-frame::before {
    content: "";
    position: absolute;
    inset: -24px -34px;          /* cât iese rama în afara pozei */
    background:
        url("image/frame-scratch.png") center/cover no-repeat;
    pointer-events: none;
}

/*
   Creează/urcă un PNG gen "frame-scratch.png" cu margini desenate (ca Badlands).
   Dacă nu ai PNG, rămâne doar poza simplă (nu rupe layout-ul).
*/

.about-text h2 {
    font-family: "Alfa Slab One", cursive;
    font-size: 2rem;
    margin: 0 0 16px;
    letter-spacing: 0.08em;
    color: var(--accent-orange);
    text-transform: uppercase;
}

.about-text p {
    line-height: 1.8;
    color: var(--text-muted);
    margin: 0 0 12px;
}

/* Buton "Intră în comunitate" */

.btn-about {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 18px;

    padding: 12px 26px;
    border-radius: 999px;
    border: 1px solid rgba(245,138,31,0.9);
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 0.82rem;
    font-weight: 700;
    text-decoration: none;

    background: linear-gradient(135deg,#f08c00,#f76707);
    color: #000;
    box-shadow: 0 0 22px rgba(0,0,0,0.75);
    transition: transform .18s ease, box-shadow .18s ease, filter .18s ease;
}

.btn-about:hover {
    transform: translateY(-2px);
    filter: brightness(1.05);
    box-shadow: 0 0 28px rgba(245,138,31,0.85);
}

/* Responsive */

@media (max-width: 900px) {
    .about-inner {
        grid-template-columns: minmax(0, 1fr);
    }

    .old-frame::before {
        inset: -16px -20px;
    }

    .about-text h2 {
        font-size: 1.6rem;
    }
}
.section-paper {
    padding: 120px 20px;
    background: url("image/paper-bg-1.jpg") center/cover no-repeat;
    position: relative;
    border-top: 2px solid rgba(0,0,0,0.4);
    border-bottom: 2px solid rgba(0,0,0,0.4);
}

.paper-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 60px 50px;
    background: rgba(0,0,0,0.35);
    backdrop-filter: blur(3px);
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.15);
    box-shadow: 0 0 65px rgba(0,0,0,0.7);
}


/* ===== FIX TEXT INVIZIBIL ÎN SECTIUNEA RP ===== */
#rp-features .section-kicker {
    color: #ffffff !important;
}

#rp-features .section-title-big {
    color: #ffffff !important;
    text-shadow: 0 0 22px rgba(0,0,0,1);
}

#rp-features .section-text {
    color: #e8e8e8 !important;
    text-shadow: 0 0 14px rgba(0,0,0,0.9);
}

#rp-features .section-list li {
    color: #ffffff !important;
}

#rp-features .section-list li::before {
    color: #ffffff !important;
}


#rp-features::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 40%, rgba(0,0,0,0.1), rgba(0,0,0,0.7));
    pointer-events: none;
}

#rp-features .section-text,
#rp-features .section-list li {
    color: #f2f2f2 !important;
    text-shadow: 0 0 14px rgba(0,0,0,0.9), 0 0 4px rgba(0,0,0,0.6) !important;
}
.footer-image {
    width: 140px;          /* <-- DIMENSIUNEA PE CARE O VREI (poți schimba) */
    height: auto;
    display: block;
    margin: 0 auto;        /* centru */
    opacity: 0.95;
}
#rp-features {
    position: relative;
}

#rp-features::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45); /* 45% transparent - poți modifica */
    backdrop-filter: blur(1px);       /* super cinematic */
    pointer-events: none;
    z-index: 0;
}

/* Textul trebuie să fie deasupra overlay-ului */
#rp-features .section-inner,
#rp-features * {
    position: relative;
    z-index: 2;
}
/* ==== FEEDBACK SECTION ==== */



.feedback-inner {
    display: grid;
    grid-template-columns: 1.1fr 1.3fr;
    gap: 30px;
    align-items: flex-start;
}

.feedback-left .section-title-big {
    margin-bottom: 12px;
}

.feedback-rating {
    margin-top: 10px;
    margin-bottom: 12px;
}

.stars-row {
    font-size: 1.7rem;
    line-height: 1;
}

.stars-row .star {
    color: #4a3627;
    text-shadow: 0 0 4px rgba(0,0,0,0.7);
}

.stars-row .star.filled {
    color: #f5a623;
}

.stars-row .star.half {
    background: linear-gradient(90deg, #f5a623 50%, #4a3627 50%);
    -webkit-background-clip: text;
    color: transparent;
}

.rating-text {
    margin-top: 4px;
    font-size: 0.9rem;
    color: #e2d3c2;
}

.rating-text strong {
    font-size: 1.05rem;
    margin-right: 6px;
    color: #f9d3a2;
}

.feedback-subtext {
    margin-top: 10px;
    font-size: 0.9rem;
    color: #d8c8b7;
    max-width: 420px;
}

/* cards dreapta */

.feedback-right {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.feedback-card {
    padding: 12px 13px 14px;
    border-radius: 14px;
    background: rgba(18,12,9,0.95);
    border: 1px solid rgba(120,85,60,0.7);
    box-shadow: 0 6px 16px rgba(0,0,0,0.7);
    font-size: 0.9rem;
}

.fb-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 6px;
}

.fb-stars .star {
    font-size: 1rem;
    color: #4a3627;
}

.fb-stars .star.filled {
    color: #f5a623;
}

.fb-category {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.09em;
    padding: 2px 7px;
    border-radius: 999px;
    border: 1px solid rgba(245,138,31,0.6);
    background: rgba(245,138,31,0.12);
    color: #ffd6a6;
}

.fb-message {
    margin: 4px 0 8px;
    font-size: 0.86rem;
    color: #f0e0cf;
}

.fb-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.78rem;
    color: #cbb8a6;
    opacity: 0.9;
}

.fb-name {
    font-weight: 600;
    color: #f3d6bb;
}

/* responsive */

@media (max-width: 900px) {
    .feedback-inner {
        grid-template-columns: 1fr;
    }

    .feedback-right {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .feedback-right {
        grid-template-columns: minmax(0, 1fr);
    }
}


.home-stats {
    max-width: var(--max-width);
    margin: 40px auto 10px;
    padding: 16px 26px;
    border-radius: 999px;

    background: radial-gradient(circle at top,
        rgba(255,138,31,0.25) 0%,
        rgba(5,3,3,0.95) 40%,
        #050303 100%);
    border: 1px solid rgba(255,138,31,0.6);
    box-shadow:
        0 0 18px rgba(255,138,31,0.35),
        0 10px 30px rgba(0,0,0,0.75);

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    font-size: 0.9rem;
}

.home-stat-item {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
}

.home-stat-main {
    flex: 1.2;
}

.home-stat-item .icon {
    width: 32px;
    height: 32px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    color: #ff8a1f;
    background: radial-gradient(circle, rgba(255,138,31,0.2), transparent 65%);
}

.home-stat-item .text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.home-stat-item .label {
    text-transform: uppercase;
    letter-spacing: 0.09em;
    font-size: 0.7rem;
    color: var(--text-muted, #b9a79b);
}

.home-stat-item .value-main {
    font-weight: 800;
    font-size: 1.25rem;
    color: #fff;
}

.home-stat-item .value-sub {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.75);
}

/* Responsive */
@media (max-width: 900px) {
    .home-stats {
        flex-wrap: wrap;
        border-radius: 24px;
        padding: 14px 18px;
        gap: 18px 22px;
    }

    .home-stat-item {
        width: calc(50% - 10px);
    }

    .home-stat-main {
        width: 100%;
    }
}

@media (max-width: 600px) {
    .home-stat-item {
        width: 100%;
    }
}
