*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Arial, Helvetica, sans-serif;
}

.btn{padding:12px 24px;
    border:none;
    border-radius:10px;
    background:#f5f5f5;
    cursor:pointer;
    font-size:16px;
    transition:0.3s;
    float:right;
    padding-top: -10px;
}

.btn:hover{
    background:#e9e9e9;
}

body{
    background: linear-gradient(180deg, #003a75, #001b38 45%, #00142b);
    color: whitesmoke;
    padding:30px;
    min-height: 100vh;
}

header{

    display:flex;

    justify-content:space-between;

    align-items:center;

    margin-bottom:40px;
}

.logo{

    font-size:40px;

    padding:15px 35px;

    background:white;

    border:1px solid #ddd;

    border-radius:18px;

    font-size:22px;

    cursor:pointer;
}

    font-weight:bold;
}

.container{

    max-width:1000px;

    margin:auto;

    border:1px solid rgba(255, 255, 255, 0.15);

    padding:40px;
}


.back-btn{

    color: rgba(245, 245, 245, 0.75);

    text-decoration:none;

    font-size:22px;
}

.back-btn i{

    margin-right:10px;
}


.city{

    font-size:80px;

    font-weight:500;

    margin-top:40px;
}

.court-count{

    font-size:28px;

    color: rgba(245, 245, 245, 0.65);

    margin-top:15px;

    margin-bottom:80px;
}

/* VENUE CARDS */

.venue-card{

    background: rgba(255, 255, 255, 0.06);

    border: 1px solid rgba(255, 255, 255, 0.15);

    backdrop-filter: blur(6px);

    border-radius:30px;

    padding:20px;

    margin-bottom:20px;

    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);

    transition: border-color 0.25s ease, transform 0.25s ease;
}

.venue-card:hover{

    border-color: #6ea8ff;

    transform: translateY(-2px);
}

.card-header{

    display:flex;

    justify-content:space-between;

    align-items:flex-start;
}

.card-header h2{

    font-size:28px;

    line-height:1.4;

    font-weight:500;

    max-width:700px;

    color: whitesmoke;
}

.card-header p{

    margin-top:20px;

    color: rgba(245, 245, 245, 0.65);

    font-size:22px;
}

.card-header i{

    color: rgba(245, 245, 245, 0.35);

    font-size:28px;
}

.tags{

    display:flex;

    flex-wrap:wrap;

    gap:12px;

    margin-top:40px;
}

.tags span{

    border: 1px solid rgba(255, 255, 255, 0.25);

    padding:12px 22px;

    border-radius:30px;

    color: rgba(245, 245, 245, 0.8);

    font-size:13px;

    background: rgba(255, 255, 255, 0.05);
}

.view{

    border: none;

    padding:12px 22px;

    border-radius:30px;

    color:white;

    font-size:18px;

    background:#0051A2;

    transition: background 0.25s ease;
}

.view:hover{

    background: steelblue;
}

.view a{
    text-decoration:none;
    color:white;
    font-family: Berylium Italic;
}

.city-title{
        font-size:50px;
    }

    .court-count{
        font-size:22px;
    }

    .card-header{
        flex-direction:column;
        gap:20px;
    }

    .card-header h2{
        font-size:22px;
    }

    .card-header p{
        font-size:18px;
    }

    .container{
        padding:20px;
    }
