/* style.css */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #f4f7f6;
    color: #333;
}

header {
    background-color: #004D81;
    color: white;
    padding: 15px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

header .logo {
    font-size: 24px;
    font-weight: bold;
    letter-spacing: 1px;
}

header nav a {
    color: #e0e0e0;
    text-decoration: none;
    margin-left: 20px;
    font-weight: 600;
    font-size: 16px;
    transition: color 0.2s;
}

header nav a:hover, header nav a.active {
    color: #fff;
    border-bottom: 2px solid white;
    padding-bottom: 4px;
}

.container {
    max-width: 1100px;
    margin: 40px auto;
    padding: 0 20px;
}

.hero-section {
    text-align: center;
    margin-bottom: 40px;
}

.hero-section h1 {
    font-size: 32px;
    color: #004D81;
    margin-bottom: 10px;
}

.result-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.result-card {
    background: white;
    border-radius: 10px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    border-top: 5px solid #004D81;
}

.result-card h2 {
    font-size: 22px;
    margin-bottom: 10px;
}

.status-badge {
    display: inline-block;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 15px;
}

.status-badge.available {
    background-color: #e6f4ea;
    color: #137333;
}

.status-badge.coming-soon {
    background-color: #fef7e0;
    color: #b06000;
}

.btn {
    display: block;
    width: 100%;
    padding: 12px;
    margin-top: 12px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
    transition: background 0.2s;
}

.btn-download {
    background-color: #004D81;
    color: white;
}

.btn-download:hover {
    background-color: #0066a6;
}

.btn-view {
    background-color: #fff;
    color: #004D81;
    border: 2px solid #004D81;
}

.btn-view:hover {
    background-color: #f0f4f8;
}

.btn-disabled {
    background-color: #e0e0e0;
    color: #999;
    cursor: not-allowed;
    border: none;
}

footer {
    background-color: #222;
    color: #bbb;
    text-align: center;
    padding: 25px;
    margin-top: 60px;
    font-size: 14px;
}

footer .footer-links a {
    color: #bbb;
    text-decoration: none;
    margin: 0 10px;
}

footer .footer-links a:hover {
    color: white;
}