
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}


body {
    background: linear-gradient(135deg, #df4a81, #c430d7, #b03ad8);
    overflow-x: hidden;
}


.top-header {
    text-align: center;
    padding: 50px 20px;
    background: rgba(255, 255, 255, 0.05);
    color: white;
    
    top: 0;
    z-index: 1000;
    text-shadow: 2px 2px 6px rgba(0,0,0,0.4);
}
.top-header h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}
.top-header p {
    font-size: 1.2rem;
}


.continent {
    text-align: center;
    padding: 60px 20px;
    margin-bottom: 60px;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(8px);
    border-radius: 20px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}
.continent h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: #fff;
    text-shadow: 1px 1px 5px rgba(0,0,0,0.5);
}
.continent p {
    font-size: 1.1rem;
    color: #fce7ff;
    max-width: 700px;
    margin: 0 auto 40px auto;
    line-height: 1.6;
}


.card-stack-area {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}
.card {
    width: 200px;
    height: 250px;
    border-radius: 20px;
    overflow: hidden;
    border: 2px solid #df4a81;
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(5px);
    transition: transform 0.3s, box-shadow 0.3s, border 0.3s;
}
.card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}
.card:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 25px rgba(0,0,0,0.3);
    border: 2px solid #c430d7;
}
.card:hover img {
    transform: scale(1.05);
}

/* FOOTER */
.footer {
    text-align: center;
    padding: 30px 20px;
    background: rgba(255,255,255,0.05);
    color: white;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.3);
}
.footer p {
    margin-top: 5px;
}


@media(max-width:768px){
    .top-header h1 {
        font-size: 2rem;
    }
    .continent h2 {
        font-size: 1.5rem;
    }
    .card {
        width: 150px;
        height: 200px;
    }
}
@media(max-width:480px){
    .top-header h1 {
        font-size: 1.5rem;
    }
    .continent h2 {
        font-size: 1.2rem;
    }
    .card {
        width: 120px;
        height: 160px;
    }
}
