body {
    background-color: #010a1a; /* Deepest Navy Black */
    color: #e0e0e0;
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    text-align: center;
}

.background-watermark {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 25vw;
    color: rgba(255, 255, 255, 0.02);
    z-index: -1;
    pointer-events: none;
}

.container {
    max-width: 800px;
    padding: 40px;
    z-index: 1;
}

/* LOGO STYLING - Ensures visibility */
.main-logo {
    width: 250px;
    height: auto;
    margin: 0 auto 10px auto;
    display: block;
    /* 'screen' is the industry standard for removing black backgrounds from images */
    mix-blend-mode: screen; 
    filter: drop-shadow(0 0 25px rgba(212, 175, 55, 0.4));
    transition: transform 0.5s ease;
    /* This ensures no border or outline interferes */
    border: none;
    outline: none;
}
}
}

h1 {
    font-family: 'Cinzel', serif;
    color: #d4af37;
    letter-spacing: 8px;
    font-size: clamp(1.8rem, 5vw, 3rem);
    margin-bottom: 10px;
    text-transform: uppercase;
}

.tagline {
    font-size: 0.8rem;
    letter-spacing: 4px;
    color: #777;
    text-transform: uppercase;
    margin-bottom: 50px;
}

h2 {
    font-family: 'Cinzel', serif;
    color: #d4af37;
    letter-spacing: 4px;
    font-size: 1.1rem;
    text-transform: uppercase;
}

p {
    line-height: 2;
    font-weight: 300;
    margin-bottom: 40px;
    font-size: 1rem;
}

.gateways {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 18px 45px;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 2px;
    font-size: 0.85rem;
    border: 1px solid;
    transition: all 0.4s ease;
}

.gold { color: #d4af37; border-color: #d4af37; }
.silver { color: #fff; border-color: #fff; }

.gold:hover { background: #d4af37; color: #000; box-shadow: 0 0 15px rgba(212, 175, 55, 0.4); }
.silver:hover { background: #fff; color: #000; }

@media (max-width: 600px) {
    .main-logo { width: 160px; }
    .gateways { flex-direction: column; align-items: center; }
    .btn { width: 100%; box-sizing: border-box; }
}
