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

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: #1a202c;
    background: #f7fafc;
}

.verify-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a202c 0%, #2d3748 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999999;
}

.verify-screen.hidden {
    display: none;
}

.verify-box {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    max-width: 500px;
    margin: 0 20px;
    text-align: center;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
}

.verify-logo {
    font-size: 4.5rem;
    margin-bottom: 1.5rem;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.verify-box h2 {
    font-size: 2rem;
    color: #ed8936;
    margin-bottom: 1rem;
    font-weight: 800;
}

.verify-box p {
    font-size: 1.05rem;
    color: #4a5568;
    margin-bottom: 1rem;
}

.verify-highlights {
    background: #fffaf0;
    padding: 1.5rem;
    border-radius: 15px;
    margin: 1.5rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.highlight-item {
    font-size: 0.95rem;
    color: #c05621;
    font-weight: 600;
}

.verify-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.verify-buttons button {
    flex: 1;
    padding: 1rem 2rem;
    font-size: 1rem;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-yes {
    background: linear-gradient(135deg, #ed8936 0%, #dd6b20 100%);
    color: white;
}

.btn-yes:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(237, 137, 54, 0.4);
}

.btn-no {
    background: #e2e8f0;
    color: #4a5568;
}

.btn-no:hover {
    background: #cbd5e0;
}

.layout-grid {
    display: flex;
    min-height: 100vh;
}

.side-panel {
    width: 300px;
    background: linear-gradient(180deg, #1a202c 0%, #2d3748 100%);
    color: white;
    position: fixed;
    height: 100vh;
    overflow-y: auto;
    z-index: 1000;
    box-shadow: 4px 0 15px rgba(0, 0, 0, 0.2);
}

.panel-header {
    padding: 2rem 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-brand {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.brand-bolt {
    font-size: 2.5rem;
}

.site-brand h1 {
    font-size: 1.8rem;
    font-weight: 900;
    color: #ed8936;
}

.panel-toggle {
    display: none;
    background: none;
    border: none;
    color: #ed8936;
    font-size: 2.5rem;
    cursor: pointer;
    line-height: 1;
}

.side-nav {
    padding: 2rem 0;
}

.side-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    color: #cbd5e0;
    text-decoration: none;
    transition: all 0.3s;
    border-left: 3px solid transparent;
}

.side-link:hover {
    background: rgba(237, 137, 54, 0.15);
    border-left-color: #ed8936;
    color: white;
}

.side-link.active {
    background: rgba(237, 137, 54, 0.2);
    border-left-color: #ed8936;
    color: #ed8936;
}

.link-icon {
    font-size: 1.4rem;
}

.link-label {
    font-weight: 600;
    font-size: 1rem;
}

.panel-footer {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 1.5rem;
    background: rgba(0, 0, 0, 0.2);
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.panel-footer p {
    font-size: 0.9rem;
    color: #a0aec0;
    margin: 0.3rem 0;
}

.main-area {
    flex: 1;
    margin-left: 300px;
    background: #f7fafc;
}

.mobile-header {
    display: none;
    background: white;
    padding: 1rem 1.5rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    align-items: center;
    gap: 1rem;
}

.mobile-menu {
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.mobile-menu span {
    width: 25px;
    height: 3px;
    background: #ed8936;
    border-radius: 3px;
}

.mobile-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 800;
    color: #ed8936;
}

.content-area {
    min-height: 100vh;
}

.banner-hero {
    background: linear-gradient(135deg, #ed8936 0%, #c05621 100%);
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.banner-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="rgba(255,255,255,0.05)"/></svg>');
    background-size: 100px 100px;
    opacity: 0.3;
}

.hero-overlay {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 3rem;
}

.hero-main h1 {
    font-size: 4rem;
    color: white;
    margin-bottom: 1.5rem;
    font-weight: 900;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-tagline {
    font-size: 1.5rem;
    color: white;
    margin-bottom: 2rem;
    font-weight: 500;
    opacity: 0.95;
}

.action-button {
    display: inline-block;
    background: white;
    color: #ed8936;
    padding: 1.2rem 3rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 800;
    font-size: 1.2rem;
    transition: all 0.3s;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.action-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.alert-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    padding: 3rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.alert-box {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border-top: 4px solid #ed8936;
}

.alert-emoji {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.alert-box h3 {
    font-size: 1.4rem;
    color: #1a202c;
    margin-bottom: 0.5rem;
    font-weight: 800;
}

.alert-box p {
    color: #718096;
    font-size: 1rem;
}

.about-thorvynix {
    padding: 4rem 2rem;
    background: white;
    margin: 2rem 0;
}

.about-container {
    max-width: 1000px;
    margin: 0 auto;
}

.about-container h2 {
    font-size: 3rem;
    color: #1a202c;
    margin-bottom: 2rem;
    text-align: center;
    font-weight: 900;
}

.about-lead {
    font-size: 1.3rem;
    color: #ed8936;
    margin-bottom: 2rem;
    text-align: center;
    font-weight: 600;
}

.about-text {
    font-size: 1.1rem;
    color: #4a5568;
    line-height: 1.9;
    margin-bottom: 1.5rem;
}

.advantage-section {
    padding: 4rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.advantage-section h2 {
    font-size: 3rem;
    color: #1a202c;
    text-align: center;
    margin-bottom: 3rem;
    font-weight: 900;
}

.advantage-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.advantage-box {
    background: linear-gradient(135deg, #fff5f0 0%, #fffaf0 100%);
    padding: 2.5rem;
    border-radius: 15px;
    border: 2px solid #fed7d7;
    text-align: center;
}

.adv-icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.advantage-box h3 {
    font-size: 1.5rem;
    color: #1a202c;
    margin-bottom: 1rem;
    font-weight: 800;
}

.advantage-box p {
    color: #4a5568;
    font-size: 1rem;
    line-height: 1.7;
}

.game-feature {
    padding: 4rem 2rem;
    background: white;
}

.game-feature-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.game-feature-container h2 {
    font-size: 3rem;
    color: #1a202c;
    margin-bottom: 1rem;
    font-weight: 900;
}

.game-intro {
    font-size: 1.2rem;
    color: #718096;
    margin-bottom: 3rem;
}

.game-display {
    background: #f7fafc;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

.game-embed {
    width: 100%;
    height: 600px;
    border: none;
    border-radius: 15px;
    display: block;
}

.action-button-alt {
    display: inline-block;
    background: linear-gradient(135deg, #ed8936 0%, #dd6b20 100%);
    color: white;
    padding: 1.2rem 3rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 800;
    font-size: 1.2rem;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.action-button-alt:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(237, 137, 54, 0.4);
}

.explainer-section {
    padding: 4rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.explainer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
}

.explainer-card {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.explainer-card h3 {
    font-size: 2rem;
    color: #ed8936;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.explainer-card p {
    font-size: 1.05rem;
    color: #4a5568;
    line-height: 1.9;
    margin-bottom: 1.5rem;
}

.responsibility-zone {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.responsibility-box {
    background: linear-gradient(135deg, #fffaf0 0%, #fff5f0 100%);
    padding: 3rem;
    border-radius: 20px;
    border-left: 6px solid #ed8936;
}

.responsibility-box h3 {
    font-size: 2rem;
    color: #c05621;
    margin-bottom: 1rem;
    font-weight: 800;
}

.responsibility-box p {
    font-size: 1.1rem;
    color: #744210;
    line-height: 1.9;
}

.main-footer {
    background: linear-gradient(180deg, #1a202c 0%, #2d3748 100%);
    color: white;
    padding: 3rem 2rem 1rem;
}

.footer-sections {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-col h4 {
    font-size: 1.3rem;
    color: #ed8936;
    margin-bottom: 1rem;
    font-weight: 800;
}

.footer-col p {
    color: #a0aec0;
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-col a {
    display: block;
    color: #cbd5e0;
    text-decoration: none;
    margin-bottom: 0.7rem;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: #ed8936;
}

.footer-bar {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #718096;
    font-size: 0.9rem;
}

.page-title {
    background: linear-gradient(135deg, #ed8936 0%, #c05621 100%);
    padding: 3rem 2rem;
    text-align: center;
    color: white;
}

.page-title h1 {
    font-size: 3.5rem;
    margin-bottom: 0.5rem;
    font-weight: 900;
}

.page-title p {
    font-size: 1.3rem;
    opacity: 0.95;
}

.play-instructions {
    padding: 3rem 2rem;
    background: white;
    margin: 2rem 0;
}

.instructions-container {
    max-width: 1200px;
    margin: 0 auto;
}

.instructions-container h2 {
    font-size: 2.5rem;
    color: #1a202c;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.instructions-container p {
    font-size: 1.05rem;
    color: #4a5568;
    line-height: 1.9;
    margin-bottom: 1.5rem;
}

.tips-section {
    background: #fffaf0;
    padding: 2rem;
    border-radius: 15px;
    margin-top: 2rem;
    border-left: 4px solid #ed8936;
}

.tips-section h3 {
    font-size: 1.8rem;
    color: #1a202c;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.tips-columns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.tip-col {
    display: flex;
    gap: 0.8rem;
    align-items: flex-start;
}

.tip-dot {
    color: #ed8936;
    font-size: 1.5rem;
    line-height: 1.3;
}

.tip-col p {
    color: #4a5568;
    font-size: 1rem;
    margin: 0;
}

.play-area {
    padding: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.play-container {
    max-width: 100%;
}

.play-disclaimer {
    padding: 3rem 2rem;
    background: white;
    margin: 2rem 0;
}

.disclaimer-container {
    max-width: 1000px;
    margin: 0 auto;
    background: #fef5e7;
    padding: 2rem;
    border-radius: 15px;
    border-left: 4px solid #f39c12;
}

.disclaimer-container h3 {
    font-size: 1.8rem;
    color: #d68910;
    margin-bottom: 1rem;
    font-weight: 800;
}

.disclaimer-container p {
    color: #9a7d0a;
    font-size: 1.05rem;
    line-height: 1.9;
}

.legal-section {
    padding: 3rem 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

.legal-box {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.legal-box h1 {
    font-size: 3rem;
    color: #1a202c;
    margin-bottom: 0.5rem;
    font-weight: 900;
}

.updated-date {
    color: #a0aec0;
    font-style: italic;
    margin-bottom: 2rem;
}

.legal-body h2 {
    font-size: 1.7rem;
    color: #1a202c;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 800;
}

.legal-body p {
    font-size: 1.05rem;
    color: #4a5568;
    line-height: 1.9;
    margin-bottom: 1.5rem;
}

@media (max-width: 968px) {
    .side-panel {
        transform: translateX(-100%);
        transition: transform 0.3s;
    }
    
    .side-panel.active {
        transform: translateX(0);
    }
    
    .panel-toggle {
        display: block;
    }
    
    .main-area {
        margin-left: 0;
    }
    
    .mobile-header {
        display: flex;
    }
    
    .hero-main h1 {
        font-size: 2.5rem;
    }
    
    .hero-tagline {
        font-size: 1.2rem;
    }
    
    .game-embed {
        height: 400px;
    }
    
    .explainer-container {
        grid-template-columns: 1fr;
    }
    
    .verify-box {
        padding: 2rem;
    }
    
    .verify-buttons {
        flex-direction: column;
    }
}
