:root {
    --primary-blue: #1e3a8a;
    --dark-blue: #172554;
    --accent-gold: #d4af37;
    --light-gold: #fcd34d;
    --pure-white: #ffffff;
    --off-white: #f3f4f6;
    --text-dark: #1f2937;
    --text-light: #ffffff;
}

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

body {
    font-family: 'Lato', sans-serif;
    background-color: var(--off-white);
    color: var(--text-dark);
    line-height: 1.6;
}

h1, h2, h3 {
    font-family: 'Cinzel', serif;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
    text-align: center;
    color: var(--accent-gold);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

h2 {
    font-size: 1.8rem;
    border-bottom: 3px solid var(--accent-gold);
    padding-bottom: 0.5rem;
    margin-bottom: 1.5rem;
    display: inline-block;
}

p {
    margin-bottom: 1rem;
    font-size: 1.05rem;
    text-align: justify;
}

.spear {
    position: relative;
    height: 60vh;
    background: linear-gradient(180deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-bottom: 5px solid var(--accent-gold);
}

.spear::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background-image: 
        linear-gradient(to right, rgba(255,255,255,0.1) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(255,255,255,0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.3;
}

.spear-content {
    z-index: 2;
    padding: 20px;
}

.slot-logo-placeholder {
    width: 120px;
    height: 120px;
    background: rgba(255,255,255,0.1);
    border: 2px solid var(--accent-gold);
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.spear-icon {
    width: 5px;
    height: 80px;
    background: var(--accent-gold);
    transform: rotate(45deg);
    position: relative;
}

.spear-icon::after {
    content: '';
    position: absolute;
    top: -20px;
    left: -35px;
    border-left: 35px solid transparent;
    border-right: 35px solid transparent;
    border-bottom: 40px solid rgba(255,255,255,0.2);
}

.subtitle {
    color: var(--pure-white);
    font-family: 'Cinzel', serif;
    font-size: 1.2rem;
    letter-spacing: 2px;
    margin-bottom: 30px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.cta-button {
    display: inline-block;
    padding: 15px 40px;
    background-color: var(--accent-gold);
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    font-family: 'Cinzel', serif;
    transition: all 0.3s ease;
    border: 2px solid var(--pure-white);
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.cta-button:hover {
    background-color: var(--pure-white);
    color: var(--primary-blue);
    transform: translateY(-2px);
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 20px;
}

.content-card {
    background: var(--pure-white);
    padding: 40px;
    margin-bottom: 40px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border-top: 4px solid var(--primary-blue);
}

.steps {
    counter-reset: step-counter;
}

.step {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    background: var(--off-white);
    padding: 15px;
    border-radius: 5px;
    border-left: 4px solid var(--accent-gold);
}

.step-number {
    background: var(--primary-blue);
    color: var(--accent-gold);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-right: 15px;
    flex-shrink: 0;
}

.faq-item {
    margin-bottom: 20px;
    padding: 20px;
    background: var(--off-white);
    border-radius: 5px;
    border: 1px solid #e5e7eb;
}

.faq-item strong {
    display: block;
    color: var(--primary-blue);
    margin-bottom: 10px;
    font-size: 1.1rem;
}

footer {
    background-color: var(--dark-blue);
    color: var(--pure-white);
    text-align: center;
    padding: 40px 20px;
    border-top: 3px solid var(--accent-gold);
}

footer p {
    text-align: center;
    font-size: 0.9rem;
    color: #cbd5e1;
}

@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }

    .content-card {
        padding: 20px;
    }

    .spear {
        height: 50vh;
    }
}
.centered-image {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

iframe {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  max-width: 100%;
  display: block;
  margin: 0 auto;
}
body {
  overflow-x: hidden;
}