/* Reset CSS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
}

body {
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

.container {
    width: 90%;
    max-width: 1100px;
    margin: 0 auto;
}

.text-center {
    text-align: center;
}

/* Navbar */
.navbar {
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo {
    font-size: 1.4rem;
    font-weight: bold;
    color: #d32f2f;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 20px;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: #444;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #d32f2f;
}

.btn-nav {
    background: #d32f2f;
    color: #fff !important;
    padding: 8px 18px;
    border-radius: 20px;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #d32f2f, #880e4f);
    color: #fff;
    padding: 80px 0;
    text-align: center;
}

.badge {
    background: rgba(255,255,255,0.2);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    display: inline-block;
    margin-bottom: 15px;
}

.badge.red {
    background: #ffebee;
    color: #c62828;
    font-weight: bold;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    line-height: 1.3;
}

.highlight {
    color: #ffeb3b;
}

.hero p {
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 30px auto;
    opacity: 0.9;
}

.btn-primary-lg {
    display: inline-block;
    background: #ffeb3b;
    color: #b71c1c;
    padding: 16px 32px;
    font-size: 1.2rem;
    font-weight: bold;
    text-decoration: none;
    border-radius: 30px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    transition: transform 0.2s, background 0.3s;
}

.btn-primary-lg:hover {
    transform: translateY(-3px);
    background: #ffee58;
}

/* General Sections */
.section {
    padding: 60px 0;
}

.bg-light {
    background-color: #f9f9f9;
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
}

.section-title h2 {
    font-size: 2rem;
    color: #111;
}

.underline {
    width: 60px;
    height: 4px;
    background: #d32f2f;
    margin: 10px auto 0 auto;
    border-radius: 2px;
}

/* Grid & Cards */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.card {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    text-align: center;
}

.card-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.card h3 {
    margin-bottom: 10px;
    color: #d32f2f;
}

/* Roadmap Timeline */
.timeline {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.timeline-item {
    display: flex;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.timeline-badge {
    background: #d32f2f;
    color: #fff;
    padding: 20px;
    font-weight: bold;
    min-width: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.timeline-badge.gold {
    background: linear-gradient(135deg, #f57f17, #fbc02d);
}

.timeline-content {
    padding: 20px;
}

.highlight-box {
    border: 2px solid #fbc02d;
    background: #fffde7;
}

/* Stats */
.grid-4 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.stat-card {
    background: #fff;
    padding: 25px;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.stat-number {
    font-size: 2.2rem;
    font-weight: bold;
    color: #d32f2f;
}

.stat-label {
    color: #666;
    font-size: 0.95rem;
}

/* Register / Troll Section */
.register-section {
    background: #fff3e0;
    border-top: 4px dashed #ff9800;
}

.register-heading {
    font-size: 2.2rem;
    color: #e65100;
    margin-bottom: 10px;
}

.register-sub {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: #555;
}

.troll-btn-wrapper {
    margin: 30px 0;
}

.troll-btn {
    display: inline-block;
    background: linear-gradient(45deg, #ff1744, #ff5252);
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 900;
    padding: 25px 45px;
    text-decoration: none;
    border-radius: 50px;
    box-shadow: 0 8px 25px rgba(255, 23, 68, 0.4);
    transition: all 0.2s ease-in-out;
    animation: pulse 1.8s infinite;
}

.troll-btn:hover {
    transform: scale(1.05);
    background: linear-gradient(45deg, #d50000, #ff1744);
    box-shadow: 0 12px 30px rgba(255, 23, 68, 0.6);
}

.note {
    font-size: 0.85rem;
    color: #888;
    font-style: italic;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.03); }
    100% { transform: scale(1); }
}

/* Footer */
footer {
    background: #222;
    color: #aaa;
    padding: 20px 0;
    font-size: 0.9rem;
}

/* Responsive Rules */
@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 15px;
    }

    .hero h1 {
        font-size: 1.8rem;
    }

    .timeline-item {
        flex-direction: column;
    }

    .timeline-badge {
        width: 100%;
        padding: 10px;
    }

    .troll-btn {
        font-size: 1.1rem;
        padding: 18px 25px;
        width: 100%;
    }
}
