*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family: 'Segoe UI', Arial, sans-serif;
}

body{
    background: linear-gradient(rgba(8,20,40,0.82), rgba(8,20,40,0.82)),
                url("images/bg.jpg") no-repeat center center/cover;
    min-height:100vh;
    color:#f5f5f5;
}

header{
    background: rgba(0,0,0,0.45);
    padding:20px;
    text-align:center;
    backdrop-filter: blur(6px);
}

header h1{
    font-size:38px;
    color:#ffd166;
    letter-spacing:1px;
}

header p{
    margin-top:8px;
    color:#e0e0e0;
}

nav{
    background: rgba(255,255,255,0.08);
    text-align:center;
    padding:14px;
    backdrop-filter: blur(6px);
}

nav a{
    color:white;
    text-decoration:none;
    margin:0 16px;
    font-weight:bold;
    transition:0.3s;
}

nav a:hover{
    color:#ffd166;
}

.container{
    width:88%;
    margin:30px auto;
    background: rgba(255,255,255,0.08);
    padding:28px;
    border-radius:16px;
    box-shadow:0 8px 22px rgba(0,0,0,0.35);
    backdrop-filter: blur(8px);
}

h2{
    color:#ffd166;
    margin-bottom:15px;
}

h3{
    color:#a8dadc;
    margin:18px 0 10px;
}

p{
    line-height:1.8;
    margin-bottom:14px;
}

.hero{
    text-align:center;
    padding:40px 20px;
}

.hero h2{
    font-size:34px;
}

.hero p{
    max-width:800px;
    margin:0 auto 20px;
}

.btn{
    display:inline-block;
    background:#ffd166;
    color:#1a1a1a;
    padding:12px 22px;
    text-decoration:none;
    border-radius:8px;
    font-weight:bold;
    transition:0.3s;
}

.btn:hover{
    background:#ffb703;
    transform:translateY(-2px);
}

.card-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit, minmax(220px, 1fr));
    gap:20px;
    margin-top:20px;
}

.card{
    background: rgba(255,255,255,0.08);
    border-radius:14px;
    overflow:hidden;
    box-shadow:0 4px 12px rgba(0,0,0,0.25);
    text-align:center;
    padding-bottom:15px;
}

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

.card h3{
    margin:12px 10px 8px;
}

.card a{
    display:inline-block;
    margin-top:8px;
    color:#081428;
    background:#ffd166;
    padding:10px 16px;
    text-decoration:none;
    border-radius:7px;
    font-weight:bold;
}

.card a:hover{
    background:#ffb703;
}

.site-image{
    width:100%;
    max-height:420px;
    object-fit:cover;
    border-radius:12px;
    margin-bottom:18px;
}

table{
    width:100%;
    border-collapse:collapse;
    margin-top:15px;
}

table, th, td{
    border:1px solid rgba(255,255,255,0.25);
}

th, td{
    padding:12px;
    text-align:left;
}

th{
    background:rgba(255,209,102,0.2);
    color:#ffd166;
}

form label{
    display:block;
    margin-top:14px;
    margin-bottom:6px;
    font-weight:bold;
}

form input,
form select,
form textarea{
    width:100%;
    padding:12px;
    border:none;
    border-radius:8px;
    outline:none;
    margin-bottom:10px;
}

form input[type="radio"],
form input[type="checkbox"]{
    width:auto;
    margin-right:8px;
}

.inline-options{
    margin-bottom:10px;
}

form button{
    background:#ffd166;
    color:#1a1a1a;
    border:none;
    padding:12px 20px;
    border-radius:8px;
    font-weight:bold;
    cursor:pointer;
    margin-top:10px;
}

form button:hover{
    background:#ffb703;
}

.gallery{
    display:grid;
    grid-template-columns:repeat(auto-fit, minmax(220px, 1fr));
    gap:18px;
}

.gallery img{
    width:100%;
    height:200px;
    object-fit:cover;
    border-radius:12px;
    transition:0.3s;
}

.gallery img:hover{
    transform:scale(1.04);
}

footer{
    text-align:center;
    padding:16px;
    background:rgba(0,0,0,0.4);
    margin-top:30px;
}