* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    background: linear-gradient(135deg, #e8e8e3 0%, #f5f5f0 50%, #e8e8e3 100%);
    color: #1a1a1a;
    line-height: 1.6;
}

/* Top banner */
.top-banner {
    background: linear-gradient(90deg, #0f1d4a 0%, #1a2a6c 50%, #0f1d4a 100%);
    color: white;
    padding: 8px 0;
    text-align: center;
    font-size: 12px;
    letter-spacing: 1px;
    border-bottom: 1px solid #d4af37;
}

header {
    background: linear-gradient(135deg, #0a1435 0%, #1a2a6c 50%, #2d4a8f 100%);
    color: white;
    padding: 30px 0;
    box-shadow: 0 4px 15px rgba(0,0,0,0.4);
    border-bottom: 3px solid #d4af37;
    position: relative;
    overflow: hidden;
}

header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><rect width="100" height="100" fill="none"/><circle cx="50" cy="50" r="1" fill="rgba(212,175,55,0.1)"/></svg>');
    opacity: 0.3;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.seal {
    margin-right: 30px;
    position: relative;
    animation: fadeIn 1s ease-in;
}

@keyframes fadeIn {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}

.seal-circle {
    width: 100px;
    height: 100px;
    border: 4px solid #d4af37;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.2), rgba(10, 20, 53, 0.8));
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.5), inset 0 0 20px rgba(212, 175, 55, 0.3);
    position: relative;
}

.seal-circle::before {
    content: '';
    position: absolute;
    width: 85px;
    height: 85px;
    border: 2px solid #d4af37;
    border-radius: 50%;
    opacity: 0.5;
}

.seal-text {
    font-size: 28px;
    font-weight: bold;
    color: #d4af37;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.8);
    letter-spacing: 2px;
}

.header-text h1 {
    font-size: 36px;
    margin-bottom: 8px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    letter-spacing: 1px;
}

.subtitle {
    font-size: 16px;
    color: #d4af37;
    font-style: italic;
    letter-spacing: 2px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

nav {
    background: linear-gradient(90deg, #0a1435 0%, #0f1d4a 50%, #0a1435 100%);
    border-top: 2px solid #d4af37;
    border-bottom: 2px solid #d4af37;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

nav ul {
    max-width: 1200px;
    margin: 0 auto;
    list-style: none;
    display: flex;
    justify-content: center;
    padding: 0;
    flex-wrap: wrap;
}

nav li {
    margin: 0;
    position: relative;
}

nav li::after {
    content: '';
    position: absolute;
    right: 0;
    top: 20%;
    height: 60%;
    width: 1px;
    background: rgba(212, 175, 55, 0.3);
}

nav li:last-child::after {
    display: none;
}

nav a {
    display: block;
    color: white;
    text-decoration: none;
    padding: 18px 30px;
    transition: all 0.3s;
    font-size: 15px;
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
}

nav a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: #d4af37;
    transition: all 0.3s;
    transform: translateX(-50%);
}

nav a:hover {
    background: linear-gradient(180deg, transparent, rgba(212, 175, 55, 0.1));
    color: #d4af37;
}

nav a:hover::before {
    width: 80%;
}

main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.hero {
    background: linear-gradient(135deg, #ffffff 0%, #f8f8f8 100%);
    border-left: 6px solid #1a2a6c;
    padding: 40px;
    margin-bottom: 40px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
    border-radius: 2px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1), transparent);
    border-radius: 50%;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero h2 {
    color: #1a2a6c;
    margin-bottom: 20px;
    font-size: 38px;
    font-weight: bold;
    letter-spacing: 0.5px;
}

.hero p {
    font-size: 18px;
    color: #333;
    line-height: 1.8;
}

.alert-banner {
    background: linear-gradient(135deg, #fff8e1 0%, #fff3cd 100%);
    border: 2px solid #ffc107;
    border-left: 6px solid #ff9800;
    padding: 20px;
    margin-top: 25px;
    border-radius: 4px;
    box-shadow: 0 2px 10px rgba(255, 193, 7, 0.2);
}

.alert-banner strong {
    color: #e65100;
    font-size: 16px;
}

.globe-section {
    background: linear-gradient(135deg, #ffffff 0%, #f8f8f8 100%);
    padding: 40px;
    margin-bottom: 40px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
    border-radius: 2px;
    border-top: 4px solid #d4af37;
}

.globe-section h2 {
    color: #1a2a6c;
    margin-bottom: 30px;
    text-align: center;
    font-size: 32px;
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 15px;
}

.globe-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #d4af37, transparent);
}

.globe-container {
    display: flex;
    gap: 30px;
    align-items: flex-start;
    flex-wrap: wrap;
}

#globeCanvas {
    flex: 1;
    min-width: 300px;
    max-width: 800px;
    height: 600px;
    border: 3px solid #1a2a6c;
    background: linear-gradient(to bottom, #000033, #000066);
    cursor: grab;
    box-shadow: 0 8px 25px rgba(0,0,0,0.3), inset 0 0 50px rgba(0,0,0,0.5);
    border-radius: 4px;
}

#globeCanvas:active {
    cursor: grabbing;
}

.globe-controls {
    flex-shrink: 0;
    width: 280px;
    min-width: 280px;
}

.globe-controls button {
    width: 100%;
    padding: 15px;
    margin-bottom: 12px;
    background: linear-gradient(135deg, #1a2a6c 0%, #2d4a8f 100%);
    color: white;
    border: 2px solid #d4af37;
    border-radius: 4px;
    cursor: pointer;
    font-size: 15px;
    font-weight: bold;
    letter-spacing: 1px;
    transition: all 0.3s;
    box-shadow: 0 4px 10px rgba(26, 42, 108, 0.3);
    text-transform: uppercase;
}

.globe-controls button:hover {
    background: linear-gradient(135deg, #2d4a8f 0%, #3d5a9f 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(26, 42, 108, 0.4);
}

.globe-controls button:active {
    transform: translateY(0);
}

.info-panel {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 20px;
    border-radius: 4px;
    border: 2px solid #d4af37;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.info-panel h3 {
    color: #1a2a6c;
    margin-bottom: 15px;
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.info-panel p {
    font-size: 14px;
    margin: 8px 0;
    color: #333;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.info-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f8f8 100%);
    padding: 35px;
    border-left: 6px solid #d4af37;
    box-shadow: 0 5px 20px rgba(0,0,0,0.12);
    transition: all 0.3s;
    border-radius: 2px;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    border-left-color: #1a2a6c;
}

.info-card h3 {
    color: #1a2a6c;
    margin-bottom: 18px;
    font-size: 24px;
    letter-spacing: 0.5px;
}

.info-card p {
    color: #555;
    line-height: 1.7;
}

.btn {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 28px;
    background: linear-gradient(135deg, #1a2a6c 0%, #2d4a8f 100%);
    color: white;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s;
    font-weight: bold;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 14px;
    border: 2px solid transparent;
    box-shadow: 0 4px 10px rgba(26, 42, 108, 0.3);
}

.btn:hover {
    background: linear-gradient(135deg, #2d4a8f 0%, #3d5a9f 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(26, 42, 108, 0.4);
    border-color: #d4af37;
}

.about-section {
    background: linear-gradient(135deg, #ffffff 0%, #f8f8f8 100%);
    padding: 40px;
    border-left: 6px solid #1a2a6c;
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
    border-radius: 2px;
}

.about-section h2 {
    color: #1a2a6c;
    margin-bottom: 25px;
    font-size: 32px;
    letter-spacing: 1px;
}

.about-section p {
    margin-bottom: 20px;
    font-size: 17px;
    color: #333;
    line-height: 1.8;
}

footer {
    background: linear-gradient(135deg, #0a1435 0%, #0f1d4a 50%, #0a1435 100%);
    color: white;
    text-align: center;
    padding: 30px 20px;
    margin-top: 60px;
    box-shadow: 0 -4px 15px rgba(0,0,0,0.3);
    border-top: 3px solid #d4af37;
}

.footer-content p {
    margin: 8px 0;
    font-size: 14px;
    letter-spacing: 0.5px;
}

.disclaimer {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    border-top: 2px solid #d4af37;
    border-bottom: 2px solid #d4af37;
    padding: 20px;
    margin-top: 20px;
    font-size: 13px;
    color: #cccccc;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    border-radius: 4px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.5);
}

.disclaimer strong {
    color: #d4af37;
    font-size: 14px;
}

@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        text-align: center;
    }

    .seal {
        margin-right: 0;
        margin-bottom: 20px;
    }

    .header-text h1 {
        font-size: 28px;
    }

    nav ul {
        flex-direction: column;
    }

    nav li::after {
        display: none;
    }

    .globe-container {
        flex-direction: column;
    }

    #globeCanvas {
        width: 100%;
        height: 400px;
    }

    .globe-controls {
        width: 100%;
    }

    .hero h2 {
        font-size: 28px;
    }
}