*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    background:#090d16;
    color:white;
    font-family:sans-serif;
}

header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:20px 60px;
    background:#0c1220;
    border-bottom:1px solid #222;
}

.logo{
    font-size:36px;
    font-weight:bold;
}

nav a{
    color:white;
    text-decoration:none;
    margin-left:25px;
}

.hero{
    height:500px;

    background:url("images/hero.jpg");

    background-size:cover;
    background-position:center;

    display:flex;
    align-items:center;
    justify-content:center;

    text-align:center;
}

.hero h1{
    font-size:72px;
    margin-bottom:15px;
}

.hero p{
    font-size:24px;
}

.main-grid{
    max-width:1400px;
    margin:auto;

    padding:50px;

    display:grid;

    grid-template-columns:3fr 1fr;

    gap:30px;
}

.featured-news{
    background:#111827;
    border-radius:15px;
    overflow:hidden;
}

.featured-news img{
    width:100%;
    height:350px;
    object-fit:cover;
}

.news-overlay{
    padding:20px;
    font-size:24px;
}

.quick-menu{
    background:#111827;
    padding:20px;
    border-radius:15px;
}

.quick-menu a{
    display:block;
    color:white;
    text-decoration:none;
    margin-top:15px;
}

.events{
    max-width:1400px;
    margin:auto;
    padding:0 50px 50px;
}

.event-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:20px;
}

.event-card{
    background:#111827;
    padding:40px;
    border-radius:15px;
}

.fandex{
    max-width:1400px;
    margin:auto;
    padding:0 50px 80px;
}

.country-grid{
    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:20px;
}

.country-card{
    background:#111827;
    border-radius:15px;
    overflow:hidden;
    text-align:center;
}

.country-card img{
    width:100%;
    height:220px;
    object-fit:cover;
}

.country-card h3{
    margin-top:15px;
}

.country-card button{
    margin:20px;
    padding:10px 20px;
}

footer{
    padding:40px;
    text-align:center;
    border-top:1px solid #222;
}
