/* Unique Prefix: gh-legal- */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700&family=Oxanium:wght@700;800&display=swap');

:root {
    --gh-primary: #0c30ce;
    --gh-secondary: #008cff;
    --gh-dark: #080818;
    --gh-text-gray: #a0aec0;
}

.gh-legal-page-container {
    background: linear-gradient(135deg, var(--gh-dark) 0%, #101024 100%);
    color: var(--gh-text-gray);
    font-family: 'Montserrat', sans-serif;
    min-height: 100vh;
    padding: 160px 20px 80px;
}

/* Hero Section Alignment */
.gh-legal-hero {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3.5rem;
}

.gh-legal-title {
    font-family: 'Oxanium', cursive;
    font-size: 3.8rem;
    font-weight: 800;
    margin-bottom: 12px;
    background: linear-gradient(45deg, var(--gh-secondary), #fff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 0 25px rgba(0, 140, 255, 0.3);
}

.gh-legal-subtitle {
    font-size: 1rem;
    color: #718096;
    letter-spacing: 1px;
}

/* Content Box Alignment */
.gh-legal-content {
    max-width: 950px;
    margin: 0 auto;
    background: rgba(16, 16, 36, 0.6);
    border: 1px solid rgba(0, 229, 255, 0.1);
    border-radius: 24px;
    padding: 60px;
    backdrop-filter: blur(12px);
    line-height: 1.8;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.gh-legal-content h2 {
    font-family: 'Oxanium', cursive;
    font-size: 1.7rem;
    color: var(--gh-secondary);
    margin: 45px 0 20px;
    display: flex;
    align-items: center;
}

.gh-legal-content h3 {
    font-family: 'Oxanium', cursive;
    font-size: 1.2rem;
    color: #fff;
    margin: 30px 0 15px;
}

.gh-legal-content p {
    margin-bottom: 22px;
    font-size: 1.05rem;
}

/* List Alignment & Custom Bullets */
.gh-legal-content ul {
    list-style: none;
    padding-left: 5px;
    margin-bottom: 35px;
}

.gh-legal-content ul li {
    position: relative;
    padding-left: 35px;
    margin-bottom: 18px;
    color: #cbd5e0;
}

.gh-legal-content ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--gh-secondary);
    font-weight: 800;
}

/* Disclaimer Box Styling */
.gh-disclaimer-box {
    background: rgba(12, 48, 206, 0.12);
    border-left: 5px solid var(--gh-primary);
    padding: 25px 30px;
    margin-bottom: 45px;
    border-radius: 4px 15px 15px 4px;
    color: #e2e8f0;
}

.gh-disclaimer-box strong {
    color: #ffaa00;
    margin-right: 5px;
}

.gh-legal-content a {
    color: var(--gh-secondary);
    text-decoration: none;
    border-bottom: 1px dashed var(--gh-secondary);
    transition: 0.3s;
}

.gh-legal-content a:hover {
    color: #fff;
    border-bottom-style: solid;
}

/* Responsive Alignment */
@media (max-width: 768px) {
    .gh-legal-page-container { padding-top: 120px; }
    .gh-legal-title { font-size: 2.5rem; }
    .gh-legal-content { padding: 35px 25px; border-radius: 15px; }
    .gh-legal-content h2 { font-size: 1.4rem; }
}