/* Melbourne Palace Plaza - Unique Styling */
:root {
    --mpp-bg-dark: #070d1d;
    --mpp-bg-card: #111a35;
    --mpp-gold: #D4AF37;
    --mpp-gold-hover: #b89528;
    --mpp-text-light: #e2e8f0;
    --mpp-text-muted: #94a3b8;
    --mpp-font-head: 'Georgia', serif;
    --mpp-font-body: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

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

body {
    background-color: var(--mpp-bg-dark);
    color: var(--mpp-text-light);
    font-family: var(--mpp-font-body);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

/* Header */
.mpp-site-head {
    background-color: rgba(7, 13, 29, 0.95);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 15px 0;
}

.mpp-head-wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mpp-logo-box {
    display: flex;
    align-items: center;
    gap: 15px;
}

.mpp-logo-abbr {
    font-family: var(--mpp-font-head);
    font-size: 28px;
    font-weight: bold;
    color: var(--mpp-bg-dark);
    background: var(--mpp-gold);
    padding: 5px 12px;
    border-radius: 4px;
    letter-spacing: 1px;
}

.mpp-logo-text {
    display: flex;
    flex-direction: column;
}

.mpp-brand-name {
    font-family: var(--mpp-font-head);
    font-size: 20px;
    font-weight: bold;
    color: #fff;
    letter-spacing: 0.5px;
}

.mpp-brand-sub {
    font-size: 12px;
    color: var(--mpp-gold);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.mpp-head-badge {
    border: 1px solid var(--mpp-gold);
    color: var(--mpp-gold);
    padding: 6px 14px;
    font-size: 14px;
    font-weight: bold;
    border-radius: 20px;
    text-transform: uppercase;
}

/* Common Section */
.mpp-sec-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 20px;
}

.mpp-sec-title {
    font-family: var(--mpp-font-head);
    font-size: 42px;
    color: var(--mpp-gold);
    text-align: center;
    margin-bottom: 20px;
}

.mpp-sec-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px auto;
    font-size: 18px;
    color: var(--mpp-text-muted);
}

.mpp-grid-three {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Hero Section */
.mpp-hero-sec {
    padding: 100px 20px;
    background: radial-gradient(circle at center, #152243 0%, #070d1d 100%);
    text-align: center;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.mpp-hero-inner {
    max-width: 1000px;
    margin: 0 auto;
}

.mpp-hero-label {
    display: inline-block;
    color: var(--mpp-gold);
    font-size: 14px;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--mpp-gold);
    padding-bottom: 5px;
}

.mpp-hero-title {
    font-family: var(--mpp-font-head);
    font-size: 64px;
    color: #fff;
    margin-bottom: 30px;
    line-height: 1.1;
}

.mpp-hero-desc {
    font-size: 20px;
    color: var(--mpp-text-light);
    max-width: 800px;
    margin: 0 auto 60px auto;
}

.mpp-hero-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.mpp-hero-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(212, 175, 55, 0.1);
    padding: 25px;
    border-radius: 8px;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.mpp-hero-card:hover {
    transform: translateY(-5px);
    border-color: rgba(212, 175, 55, 0.5);
}

.mpp-hc-title {
    display: block;
    font-family: var(--mpp-font-head);
    font-size: 20px;
    color: var(--mpp-gold);
    margin-bottom: 10px;
}

.mpp-hc-text {
    font-size: 14px;
    color: var(--mpp-text-muted);
}

/* Cards (Responsible & Gaming) */
.mpp-grid-card {
    background-color: var(--mpp-bg-card);
    padding: 40px 30px;
    border-radius: 12px;
    border-top: 4px solid transparent;
    transition: all 0.3s ease;
}

.mpp-grid-card:hover {
    border-top-color: var(--mpp-gold);
    background-color: #172346;
}

.mpp-card-kicker {
    font-size: 12px;
    color: var(--mpp-gold);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    display: block;
    margin-bottom: 10px;
}

.mpp-card-title {
    font-family: var(--mpp-font-head);
    font-size: 24px;
    color: #fff;
    margin-bottom: 15px;
}

.mpp-card-desc {
    font-size: 15px;
    color: var(--mpp-text-muted);
    margin-bottom: 25px;
    min-height: 45px;
}

.mpp-card-list {
    list-style: none;
}

.mpp-card-list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 12px;
    font-size: 14px;
    color: var(--mpp-text-light);
}

.mpp-card-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--mpp-gold);
    font-size: 20px;
    line-height: 1;
    top: -2px;
}

/* Footer */
.mpp-site-foot {
    background-color: #030712;
    padding: 80px 20px 40px;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.mpp-foot-wrap {
    max-width: 1200px;
    margin: 0 auto;
}

.mpp-foot-slogan {
    font-family: var(--mpp-font-head);
    font-size: 36px;
    color: var(--mpp-gold);
    text-align: center;
    margin-bottom: 60px;
}

.mpp-foot-cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.mpp-foot-title {
    font-family: var(--mpp-font-head);
    font-size: 20px;
    color: #fff;
    margin-bottom: 20px;
}

.mpp-foot-col p {
    color: var(--mpp-text-muted);
    font-size: 15px;
}

.mpp-foot-contacts {
    background: rgba(255, 255, 255, 0.02);
    padding: 30px;
    border-radius: 8px;
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
}

.mpp-contact-item {
    font-size: 15px;
    color: var(--mpp-text-light);
}

.mpp-contact-item strong {
    color: var(--mpp-gold);
}

.mpp-foot-nav {
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 30px;
}

.mpp-nav-link {
    display: inline-block;
    margin: 0 15px;
    color: var(--mpp-text-muted);
    text-decoration: none;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.mpp-nav-link:hover {
    color: var(--mpp-gold);
}

/* Responsive */
@media (max-width: 992px) {
    .mpp-grid-three {
        grid-template-columns: repeat(2, 1fr);
    }
    .mpp-hero-title {
        font-size: 48px;
    }
}

@media (max-width: 768px) {
    .mpp-head-wrap {
        flex-direction: column;
        gap: 15px;
    }
    .mpp-grid-three {
        grid-template-columns: 1fr;
    }
    .mpp-hero-grid {
        grid-template-columns: 1fr;
    }
    .mpp-foot-cols {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .mpp-foot-contacts {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    .mpp-sec-title {
        font-size: 32px;
    }
}
