@import url('https://fonts.googleapis.com/css2?family=Chau+Philomene+One:ital@0;1&display=swap');



* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Chau Philomene One', sans-serif;
    background-color: #1b4332;
    color: #ffffff;
    line-height: 1.7;
    min-height: 100vh;
    font-size: 14px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    position: relative;
}

/* Main Header Styles */
.main-header {
    text-align: center;
    margin-bottom: 30px;
    padding: 25px 0;
    background: linear-gradient(135deg, #52b788, #40916c);
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.macau-logo {
    filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.3));
}

.header-title {
    font-size: 1.8em;
    font-weight: 700;
    color: #1f2937;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    letter-spacing: 1px;
    margin: 0;
}

/* Navigation Menu Styles */
.menu {
    background: linear-gradient(135deg, #b8860b, #daa520);
    padding: 15px 0;
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    text-align: center;
}

.menu a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    padding: 10px 16px;
    margin: 0 8px;
    border-radius: 6px;
    transition: all 0.3s ease;
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid transparent;
    font-size: 0.9em;
}

.menu a:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    border-color: #ffffff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* Content Styles */
.content {
    background: rgba(0, 0, 0, 0.2);
    padding: 5px;
    border-radius: 5px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    border: 1px solid #daa520;
}

h1 {
    font-size: 1.6em;
    margin-bottom: 20px;
    text-align: center;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    font-weight: 600;
}

h2 {
    font-size: 1.3em;
    margin: 25px 0 15px 0;
    color: #52b788;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    border-left: 3px solid #52b788;
    padding-left: 12px;
    font-weight: 600;
}

.title-head {
    color: #52b788;
    text-decoration: none;
    transition: color 0.3s ease;
}

.title-head:hover {
    color: #40916c;
    text-shadow: 0 0 10px rgba(82, 183, 136, 0.5);
}

p {
    margin-bottom: 16px;
    font-size: 1em;
    text-align: justify;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    font-weight: 400;
}

p a {
    color: #52b788;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

p a:hover {
    color: #ffffff;
    text-shadow: 0 0 8px rgba(82, 183, 136, 0.8);
}

/* Footer Styles */
.footer {
    background: linear-gradient(135deg, #52b788, #40916c);
    padding: 25px 0;
    border-radius: 15px;
    margin-top: 30px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    text-align: center;
    border: 1px solid #daa520;
}

.footer-content h3 {
    font-size: 1.3em;
    font-weight: 700;
    color: #1f2937;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    letter-spacing: 1px;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .container {
        padding: 5px;
    }

    .header-content {
        flex-direction: column;
        gap: 15px;
    }

    .macau-logo {
        width: 50px;
        height: 50px;
    }

    .header-title {
        font-size: 1.5em;
        letter-spacing: 1px;
    }

    .menu a {
        display: block;
        margin: 4px 0;
        padding: 8px 12px;
        font-size: 0.85em;
    }

    h1 {
        font-size: 1.4em;
    }

    h2 {
        font-size: 1.2em;
    }

    .content {
        padding: 5px;
    }

    p {
        font-size: 0.95em;
    }
}

@media (max-width: 980px) {
    .macau-logo {
        width: 40px;
        height: 40px;
    }

    .header-title {
        font-size: 1.3em;
        letter-spacing: 0.5px;
    }

    h1 {
        font-size: 1.2em;
    }

    h2 {
        font-size: 1.1em;
    }

    .content {
        padding: 10px;
    }

    p {
        font-size: 0.9em;
    }

    .footer-content h3 {
        font-size: 1.1em;
        letter-spacing: 0.5px;
    }
}