@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;500;700;900&display=swap');

:root {
    --bg-dark: #000000;
    --bg-card: #16202A;
    --teal: #ff0000; /* Vibrant Orange */
    --white: #ffffff;
    --text-gray: #ff0000;
    --red-alert: #000000;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: var(--bg-dark);
    color: var(--white);
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;
    
    /* DISABLE TEXT SELECTION */
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    
    /* FIX FOR MOBILE TAPS */
    -webkit-tap-highlight-color: transparent;
}

/* AGGRESSIVE FOCUS REMOVAL */
a, button, input, textarea, select, .nav-item, .nav-link, .faq-item {
    -webkit-tap-highlight-color: transparent;
    outline: none !important;
}
a:focus, button:focus, input:focus, textarea:focus, select:focus, .nav-item:focus, .nav-link:focus, .faq-item:focus {
    outline: none !important; 
    border-color: transparent !important;
    box-shadow: none !important;
}



/* --- WARNING MESSAGE --- */
#warning-message {
    position: fixed; bottom: 20px; right: 20px; background-color: var(--red-alert); 
    color: white; padding: 12px 20px; border-radius: 8px; font-weight: bold;
    z-index: 10000; opacity: 0; transform: translateX(100%);
    transition: all 0.4s ease-in-out; box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}
#warning-message.show { opacity: 1; transform: translateX(0); }

/* --- Navbar --- */
.navbar {
    position: fixed; top: 0; width: 100%; padding: 15px 20px;
    display: flex; justify-content: space-between; align-items: center;
    background: rgba(14, 22, 27, 0.95); z-index: 100;
    backdrop-filter: blur(5px); border-bottom: 1px solid rgba(255,255,255,0.05);
}

/* --- UPDATED LOGO COLORS --- */
.logo { 
    font-size: 1.4rem; 
    font-weight: 800; 
    letter-spacing: 1px; 
    color: var(--teal); /* Orange TRINTY */
    text-shadow: 0 0 15px rgba(255, 140, 66, 0.2);
    text-transform: uppercase;
}
.logo span { 
    color: var(--text-gray); /* Gray ROLEPLAY */
    font-size: 0.9rem; 
    font-weight: 600;
    margin-left: 5px;
}

.desktop-nav-wrapper, .navbar-actions { display: none; }
.hamburger-btn { background: none; border: none; color: white; font-size: 1.5rem; cursor: pointer; }

/* --- Mobile Menu --- */
.nav-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background-color: var(--bg-dark); z-index: 200;
    display: flex; flex-direction: column; padding: 20px;
    transform: translateY(-100%); transition: transform 0.4s ease-in-out;
}
.nav-overlay.active { transform: translateY(0); }
.nav-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 30px; }
.close-btn { background: rgba(255,255,255,0.1); width: 40px; height: 40px; border-radius: 50%; border: none; color: white; font-size: 1.2rem; cursor: pointer; }
.nav-links-mobile { display: flex; flex-direction: column; gap: 15px; overflow-y: auto; flex: 1; }
.nav-item {
    background-color: var(--bg-card); padding: 18px; border-radius: 12px;
    color: white; text-decoration: none; font-weight: 500;
    display: flex; align-items: center; gap: 15px; transition: 0.2s;
}
.nav-item.active { background-color: var(--teal); color: var(--bg-dark); }
.nav-footer { margin-top: 20px; }
.ucp-btn {
    display: flex; justify-content: center; align-items: center; gap: 10px; width: 100%;
    background-color: var(--teal); color: var(--bg-dark); padding: 18px;
    border-radius: 12px; text-decoration: none; font-weight: bold; font-size: 1.1rem;
}

/* --- Content --- */
.content-wrapper {
    padding-top: 80px; padding-bottom: 40px; 
    max-width: 1200px; margin: 0 auto;
    min-height: calc(100vh - 60px); 
}
section { display: none; padding: 20px; text-align: center; }
section.active { display: block; animation: fadeIn 0.5s ease-in-out; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

/* --- General --- */
.badge {
    background: rgba(255, 140, 66, 0.1); color: var(--teal);
    display: inline-block; padding: 8px 15px; border-radius: 20px;
    font-size: 0.85rem; margin-bottom: 20px; border: 1px solid rgba(255, 140, 66, 0.2);
}
h1 { 
    font-size: 2.2rem; text-transform: uppercase; line-height: 1.2; margin-bottom: 20px; 
    background: linear-gradient(to right, white, #d1d5db); -webkit-background-clip: text; color: transparent; background-clip: text;
}
p { color: var(--text-gray); line-height: 1.6; margin-bottom: 25px; font-size: 0.95rem; }
.hero-decoration { color: white; margin-bottom: 20px; font-size: 0.9rem; }
.spin { animation: spin 4s linear infinite; }
@keyframes spin { 100% { transform: rotate(360deg); } }

.cta-group { display: flex; flex-direction: column; gap: 12px; margin-bottom: 40px; }
.btn { border: none; padding: 16px; border-radius: 12px; font-weight: bold; cursor: pointer; display: flex; justify-content: center; align-items: center; gap: 10px; font-size: 1rem; text-decoration: none;}
.btn-discord { background: #5865F2; color: white; }
.btn-play { background: var(--teal); color: var(--bg-dark); }
.btn-download { background: #16202A; color: white; border: 1px solid #2A3B4C; }

/* --- CARD HOVER EFFECT --- */
.stat-card, .feature-card, .staff-card, .rule-card, .package-card, .faq-item {
    background: var(--bg-card); padding: 25px; border-radius: 15px;
    border: 1px solid rgba(255,255,255,0.05); transition: all 0.3s ease; position: relative;
}
.stat-card:hover, .feature-card:hover, .staff-card:hover, .rule-card:hover, .package-card:hover, .faq-item:hover {
    border-color: var(--teal) !important;
    box-shadow: 0 0 20px rgba(255, 140, 66, 0.15); transform: translateY(-5px);
}

/* Stats & Features */
.stats, .features { display: flex; flex-direction: column; gap: 15px; }
.stat-card h2 { color: var(--teal); font-size: 2.5rem; margin-bottom: 5px; display: flex; justify-content: center; gap: 10px; align-items: center;}
.stat-card p { margin: 0; font-size: 0.8rem; letter-spacing: 1px; text-transform: uppercase; }
.server-ip { background: rgba(22, 32, 42, 0.5); display: flex; justify-content: center; align-items: center; gap: 10px; padding: 20px;}
.status-dot { width: 10px; height: 10px; background-color: var(--teal); border-radius: 50%; box-shadow: 0 0 10px var(--teal); }
.feature-title h2 { font-size: 1.8rem; margin-bottom: 10px; color: white; }
.icon-circle { background: rgba(255, 140, 66, 0.1); width: 60px; height: 60px; border-radius: 50%; display: flex; justify-content: center; align-items: center; margin: 0 auto 15px auto; color: var(--teal); font-size: 1.5rem; }
.footer-stats { margin-top: 20px; padding: 20px; background: #111a22; border-radius: 20px 20px 0 0; }
.footer-stats h2 { color: var(--teal); font-size: 2.5rem; display: flex; justify-content: center; gap: 10px; align-items: center;}

/* --- STAFF PAGE DESIGN --- */
.staff-container { max-width: 1100px; margin: 0 auto; padding: 0 10px; }
.staff-group { text-align: center; margin-bottom: 40px; }
.staff-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); 
    gap: 25px; 
    margin-bottom: 40px; 
}

/* Card Container */
.staff-card {
    background-color: var(--bg-card);
    border-radius: 12px;
    padding: 20px;
    text-align: left; 
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* Header (Icon + Name + Role) */
.staff-header { text-align: center; margin-bottom: 5px; }
.staff-header .profile-icon {
    width: 70px; height: 70px; border-radius: 50%;
    background-color: var(--teal);
    display: flex; justify-content: center; align-items: center;
    font-size: 1.8rem; color: var(--bg-dark);
    margin: 0 auto 10px auto;
    box-shadow: 0 0 15px rgba(255, 140, 66, 0.3);
}
.staff-header h3 {
    color: var(--white); font-size: 1.4rem; font-weight: 800;
    margin-bottom: 5px; text-transform: uppercase; letter-spacing: 0.5px;
}
.staff-header .role {
    color: var(--teal); font-size: 0.85rem; font-weight: 700; margin: 0; text-transform: uppercase;
}

/* Inner Box Styles */
.staff-box {
    background-color: rgba(0, 0, 0, 0.2); 
    border-radius: 8px; padding: 15px; font-size: 0.85rem;
}

/* Info Box */
.info-box { display: flex; flex-direction: column; gap: 8px; }
.info-row { display: flex; align-items: center; gap: 10px; color: var(--text-gray); font-weight: 500; }
.info-row i { color: var(--teal); width: 20px; text-align: center; font-size: 1rem; }

/* Tasks Box */
.tasks-box h4 {
    color: var(--teal); font-size: 0.8rem; font-weight: 800; margin-bottom: 10px; text-transform: uppercase; letter-spacing: 0.5px;
}
.tasks-box ul { list-style: none; padding: 0; margin: 0; }
.tasks-box ul li { position: relative; padding-left: 15px; margin-bottom: 5px; color: var(--text-gray); line-height: 1.4; }
.tasks-box ul li::before { content: "•"; color: var(--text-gray); position: absolute; left: 0; font-weight: bold; }

/* Admin Box */
.admin-box {
    background: rgba(255, 82, 82, 0.08); 
    border: 1px solid rgba(255, 82, 82, 0.2);
}
.admin-box h4 {
    color: var(--red-alert); font-size: 0.8rem; font-weight: 800; margin-bottom: 8px; text-transform: uppercase; letter-spacing: 0.5px;
}
.admin-box p {
    color: var(--red-alert); font-weight: 700; margin: 0; font-size: 0.8rem; display: flex; align-items: flex-start; gap: 5px; line-height: 1.4;
}

/* --- Rules & Other Pages --- */
.rules-container, .donate-container, .faq-container, .contact-form-container { max-width: 1000px; margin: 0 auto; padding: 0 10px; }
.rule-card { margin-bottom: 15px; text-align: left; border-left: 4px solid var(--teal); }
.rule-card h3 { color: var(--teal); font-size: 1.1rem; margin-bottom: 5px; }

.donation-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 20px; text-align: center; }
.package-card .buy-btn { background-color: var(--teal); color: var(--bg-dark); padding: 12px 25px; border-radius: 8px; text-decoration: none; font-weight: bold; margin-top: 20px; display: inline-block; width: 100%; transition: 0.2s; }
.faq-grid { display: grid; grid-template-columns: 1fr; gap: 15px; text-align: left; }
.faq-item h4 { color: var(--white); font-size: 1.1rem; margin-bottom: 10px; }

/* Contact Form */
.contact-form { background-color: var(--bg-card); padding: 30px; border-radius: 12px; text-align: left; margin-top: 20px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; color: var(--text-gray); font-size: 0.9rem; margin-bottom: 8px; font-weight: 500;}
.form-group input, .form-group textarea { width: 100%; padding: 15px; background-color: var(--bg-dark); border: 1px solid #2A3B4C; border-radius: 8px; color: var(--white); font-size: 1rem; outline: none; transition: 0.2s; }
.form-group input:focus, .form-group textarea:focus { border-color: var(--teal); }
.submit-btn { background-color: var(--teal); color: var(--bg-dark); border: none; padding: 15px; border-radius: 8px; font-weight: bold; width: 100%; cursor: pointer; transition: 0.3s; }
.submit-btn:disabled { opacity: 0.6; cursor: not-allowed; }

/* Radio Group */
.custom-radio-group { background-color: var(--bg-dark); border-radius: 12px; border: 1px solid #2A3B4C; overflow: hidden; }
.radio-option { display: flex; justify-content: space-between; align-items: center; padding: 15px 20px; cursor: pointer; border-bottom: 1px solid #2A3B4C; position: relative; }
.radio-option:last-child { border-bottom: none; }
.radio-option input { position: absolute; opacity: 0; cursor: pointer; }
.checkmark { height: 20px; width: 20px; border: 2px solid var(--text-gray); border-radius: 50%; display: inline-block; position: relative; }
.radio-option input:checked ~ .checkmark { border-color: var(--teal); }
.radio-option input:checked ~ .checkmark::after { content: ""; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 10px; height: 10px; border-radius: 50%; background: var(--teal); }
.radio-option input:checked ~ span { color: var(--white); font-weight: bold; }

.site-footer { text-align: center; padding: 20px; background-color: var(--bg-dark); color: var(--text-gray); font-size: 0.85rem; border-top: 1px solid rgba(255, 255, 255, 0.05); margin-top: 40px; }

/* --- Desktop Queries (768px+) --- */
@media (min-width: 768px) {
    .hamburger-btn, .nav-overlay { display: none !important; }
    .desktop-nav-wrapper, .navbar-actions { display: flex; }
    
    .navbar { padding: 15px 40px; justify-content: space-between; height: 70px; background: transparent; border-bottom: none; }
    
    .desktop-nav-wrapper {
        background-color: var(--bg-card); padding: 5px; border-radius: 10px;
        display: flex; align-items: center; border: 1px solid rgba(255,255,255,0.05);
        box-shadow: 0 5px 10px rgba(0,0,0,0.2);
    }
    .desktop-nav-links { display: flex; align-items: center; gap: 5px; }
    .desktop-nav-links .nav-link { 
        color: var(--text-gray); text-decoration: none; padding: 10px 15px; 
        font-size: 0.9rem; font-weight: 600; display: flex; align-items: center; gap: 8px; 
        transition: all 0.3s ease; border-radius: 8px; white-space: nowrap; 
    }
    .desktop-nav-links .nav-link:hover { color: var(--white); background-color: rgba(255,255,255,0.05); }
    .desktop-nav-links .nav-link.active { background-color: var(--teal); color: var(--bg-dark); box-shadow: 0 0 10px rgba(255, 140, 66, 0.3); }

    /* --- FIXED UCP & FORUM BUTTONS --- */
    .navbar-actions { margin-left: 0; gap: 12px; align-items: center; }
    
    .navbar-btn {
        padding: 10px 24px;
        border-radius: 8px;
        font-weight: 700;
        font-size: 0.95rem;
        text-decoration: none;
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        gap: 8px;
        text-transform: uppercase;
    }

    /* UCP Button (Orange) */
    .btn-ucp {
        background-color: var(--teal);
        color: var(--bg-dark);
        box-shadow: 0 4px 15px rgba(255, 140, 66, 0.3);
    }
    .btn-ucp:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(255, 140, 66, 0.5);
    }

    /* FORUM Button (Dark) */
    .btn-forum {
        background-color: #16202A;
        color: var(--white);
        border: 1px solid rgba(255, 255, 255, 0.1);
    }
    .btn-forum:hover {
        background-color: #1c2936;
        border-color: rgba(255, 255, 255, 0.3);
        transform: translateY(-2px);
    }

    .content-wrapper { padding-top: 130px; }
    .cta-group { flex-direction: row; justify-content: center; }
    .stats { flex-direction: row; justify-content: space-around; gap: 30px; }
    .features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; padding-top: 40px; }
    .feature-card { padding: 40px 20px; }
    .feature-title { grid-column: 1 / -1; margin-bottom: 20px; }
    .faq-grid { grid-template-columns: repeat(2, 1fr); }
    .contact-form { max-width: 600px; margin-left: auto; margin-right: auto; }
}

/* --- FORM STATUS MESSAGES --- */
.form-status {
    margin-top: 15px;
    padding: 15px;
    border-radius: 8px;
    display: none; /* Hidden by default */
    text-align: center;
    font-weight: bold;
    font-size: 0.95rem;
    animation: fadeIn 0.3s ease-in-out;
}

.form-status.success {
    background: rgba(46, 204, 113, 0.15);
    color: #2ecc71;
    border: 1px solid #2ecc71;
}

.form-status.error {
    background: rgba(231, 76, 60, 0.15);
    color: #e74c3c;
    border: 1px solid #e74c3c;
}

.footer-logo {
    max-width: 200px; /* provo 100px, 120px, 140px */
    height: auto;
    display: block;
    margin: 0 auto;
}
.footer-logo {
    transition: 0.3s ease;
}

.footer-logo:hover {
    transform: scale(1.05);
}
.footer-logo {
    transition: 0.3s ease;
}

.footer-logo:hover {
    transform: scale(1.05);
}
.footer-stats {
    background: transparent !important; /* heq background-in */
    padding: 0 !important;              /* heq hapësirën brenda */
    border: none !important;            /* heq kornizën nëse ka */
    text-align: center;
}
.footer-logo {
    max-width: 140px; /* rregullo sipas deshires */
    height: auto;
    display: inline-block;
}
.footer-stats img {
    background: transparent !important;
}
.community-container {
    display: flex;
    flex-direction: column;
    gap: 25px;
}
