/*
Free Fire LANQUEST - Main Stylesheet
Custom CSS (No Bootstrap)
Free Fire Colors: Orange #FF6600, Yellow #FFD700, Black #000000

Developed and Maintained by SyncGaze
*/

/* ==================== RESET & BASE ==================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --ff-orange: #FF6600;
    --ff-yellow: #FFD700;
    --ff-black: #000000;
    --ff-white: #FFFFFF;
    --ff-gray: #333333;
    --ff-light-gray: #CCCCCC;
    --ff-dark-bg: #1a1a1a;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--ff-black);
    color: var(--ff-white);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ==================== NAVIGATION ==================== */
.navbar {
    background: linear-gradient(135deg, var(--ff-black) 0%, var(--ff-gray) 100%);
    border-bottom: 3px solid var(--ff-orange);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 10px rgba(255, 102, 0, 0.3);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand a {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-size: 24px;
    font-weight: bold;
}

.brand-icon {
    font-size: 32px;
}

.brand-text {
    background: linear-gradient(135deg, var(--ff-orange) 0%, var(--ff-yellow) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-link {
    color: var(--ff-white);
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    padding: 8px 15px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.nav-link:hover, .nav-link.active {
    background: var(--ff-orange);
    color: var(--ff-black);
    transform: translateY(-2px);
}

.nav-toggle {
    display: none;
    font-size: 24px;
    color: var(--ff-orange);
    cursor: pointer;
}

/* ==================== HERO SECTION ==================== */
.hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #000 0%, #1a1a1a 50%, #2a2a2a 100%);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(255, 102, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 215, 0, 0.1) 0%, transparent 50%);
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 102, 0, 0.1) 0%, rgba(255, 215, 0, 0.1) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 50px 20px;
}

.hero-logo {
    font-size: 120px;
    margin-bottom: 20px;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.hero-title {
    font-size: 72px;
    font-weight: bold;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--ff-orange) 0%, var(--ff-yellow) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.hero-subtitle {
    font-size: 28px;
    color: var(--ff-white);
    margin-bottom: 40px;
    font-weight: 300;
}

.hero-details {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.hero-detail-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    color: var(--ff-light-gray);
}

.hero-detail-item i {
    color: var(--ff-orange);
    font-size: 24px;
}

.hero-prize {
    margin-bottom: 40px;
}

.prize-box {
    display: inline-block;
    background: linear-gradient(135deg, var(--ff-orange) 0%, var(--ff-yellow) 100%);
    padding: 30px 60px;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(255, 102, 0, 0.5);
}

.prize-label {
    display: block;
    color: var(--ff-black);
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 8px;
}

.prize-amount {
    display: block;
    color: var(--ff-black);
    font-size: 42px;
    font-weight: bold;
}

.hero-actions {
    margin-top: 40px;
}

.registration-closed {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 20px 40px;
    background: rgba(255, 0, 0, 0.2);
    border: 2px solid #FF0000;
    border-radius: 50px;
    color: #FF6666;
    font-size: 20px;
    font-weight: bold;
}

/* ==================== BUTTONS ==================== */
.btn {
    display: inline-block;
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.btn-primary {
    background: linear-gradient(135deg, var(--ff-orange) 0%, var(--ff-yellow) 100%);
    color: var(--ff-black);
    box-shadow: 0 4px 15px rgba(255, 102, 0, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 102, 0, 0.6);
}

.btn-secondary {
    background: var(--ff-gray);
    color: var(--ff-white);
    border: 2px solid var(--ff-orange);
}

.btn-secondary:hover {
    background: var(--ff-orange);
    color: var(--ff-black);
}

.btn-outline {
    background: transparent;
    color: var(--ff-orange);
    border: 2px solid var(--ff-orange);
}

.btn-outline:hover {
    background: var(--ff-orange);
    color: var(--ff-white);
}

.btn-large {
    padding: 20px 50px;
    font-size: 18px;
}

.btn i {
    margin-right: 8px;
}

/* ==================== STATS SECTION ==================== */
.stats-section {
    padding: 60px 20px;
    background: var(--ff-dark-bg);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.stat-card {
    background: linear-gradient(135deg, var(--ff-gray) 0%, var(--ff-black) 100%);
    border: 2px solid var(--ff-orange);
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(255, 102, 0, 0.4);
}

.stat-icon {
    font-size: 48px;
    color: var(--ff-orange);
    margin-bottom: 15px;
}

.stat-number {
    font-size: 48px;
    font-weight: bold;
    color: var(--ff-yellow);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 18px;
    color: var(--ff-light-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ==================== SECTION STYLING ==================== */
.how-it-works, .rules-section, .prize-section, .contact-section {
    padding: 80px 20px;
}

.how-it-works {
    background: var(--ff-black);
}

.rules-section {
    background: var(--ff-dark-bg);
}

.prize-section {
    background: linear-gradient(135deg, #000 0%, #1a1a1a 100%);
}

.contact-section {
    background: var(--ff-gray);
}

.section-title {
    text-align: center;
    font-size: 48px;
    margin-bottom: 60px;
    color: var(--ff-yellow);
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* ==================== STEPS GRID ==================== */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.step-card {
    background: linear-gradient(135deg, var(--ff-gray) 0%, var(--ff-dark-bg) 100%);
    border: 2px solid var(--ff-orange);
    border-radius: 15px;
    padding: 40px 30px;
    position: relative;
    transition: all 0.3s ease;
}

.step-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(255, 102, 0, 0.4);
}

.step-number {
    position: absolute;
    top: -20px;
    left: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--ff-orange) 0%, var(--ff-yellow) 100%);
    color: var(--ff-black);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
}

.step-icon {
    font-size: 56px;
    text-align: center;
    margin: 20px 0;
}

.step-card h3 {
    color: var(--ff-yellow);
    font-size: 24px;
    margin-bottom: 15px;
    text-align: center;
}

.step-card p {
    color: var(--ff-light-gray);
    margin-bottom: 20px;
    text-align: center;
}

.step-details {
    list-style: none;
    padding: 0;
}

.step-details li {
    color: var(--ff-white);
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
}

.step-details li::before {
    content: '🔥';
    position: absolute;
    left: 0;
}

/* ==================== RULES GRID ==================== */
.rules-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.rule-card {
    background: var(--ff-black);
    border: 2px solid var(--ff-orange);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.rule-card:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(255, 102, 0, 0.4);
}

.rule-card i {
    font-size: 48px;
    color: var(--ff-orange);
    margin-bottom: 20px;
}

.rule-card h4 {
    color: var(--ff-yellow);
    font-size: 22px;
    margin-bottom: 15px;
}

.rule-card p {
    color: var(--ff-light-gray);
    line-height: 1.8;
}

/* ==================== PRIZE GRID ==================== */
.prize-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.prize-card {
    background: linear-gradient(135deg, var(--ff-gray) 0%, var(--ff-dark-bg) 100%);
    border: 3px solid var(--ff-orange);
    border-radius: 20px;
    padding: 50px 30px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.prize-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 50px rgba(255, 102, 0, 0.5);
}

.prize-card.winner {
    border-color: var(--ff-yellow);
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, var(--ff-dark-bg) 100%);
}

.prize-rank {
    font-size: 80px;
    margin-bottom: 20px;
}

.prize-card h3 {
    color: var(--ff-yellow);
    font-size: 28px;
    margin-bottom: 20px;
}

.prize-value {
    display: block;
    font-size: 36px;
    font-weight: bold;
    color: var(--ff-orange);
    margin-bottom: 15px;
}

.prize-desc {
    color: var(--ff-light-gray);
    font-size: 16px;
}

/* ==================== CONTACT GRID ==================== */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.contact-card {
    background: var(--ff-dark-bg);
    border: 2px solid var(--ff-orange);
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
}

.contact-card i {
    font-size: 56px;
    color: var(--ff-orange);
    margin-bottom: 20px;
}

.contact-card h4 {
    color: var(--ff-yellow);
    font-size: 24px;
    margin-bottom: 15px;
}

.contact-card a, .contact-card p {
    color: var(--ff-white);
    text-decoration: none;
    font-size: 18px;
}

.contact-card a:hover {
    color: var(--ff-orange);
}

/* ==================== FOOTER ==================== */
.footer {
    background: var(--ff-black);
    border-top: 3px solid var(--ff-orange);
    padding: 50px 20px 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    color: var(--ff-yellow);
    margin-bottom: 20px;
    font-size: 22px;
}

.footer-section p {
    color: var(--ff-light-gray);
    margin-bottom: 10px;
}

.footer-section a {
    color: var(--ff-orange);
    text-decoration: none;
}

.prize-highlight {
    color: var(--ff-orange);
    font-size: 24px;
    font-weight: bold;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid var(--ff-gray);
}

.footer-bottom p {
    color: var(--ff-light-gray);
    margin: 10px 0;
}

.credits {
    color: #666;
    font-size: 14px;
}

.credits strong {
    color: var(--ff-orange);
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .nav-toggle {
        display: block;
    }
    
    .hero-title {
        font-size: 42px;
    }
    
    .hero-subtitle {
        font-size: 20px;
    }
    
    .hero-details {
        flex-direction: column;
        gap: 15px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .stats-grid,
    .steps-grid,
    .rules-grid,
    .prize-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

/* ==================== UTILITIES ==================== */
.text-center {
    text-align: center;
}

.mt-20 {
    margin-top: 20px;
}

.mb-20 {
    margin-bottom: 20px;
}

.hidden {
    display: none;
}
