:root {
    --primary: #ff6b00;
    --primary-dark: #e05d00;
    --primary-light: #e05d00;
    --dark-bg: #121212;
    --dark-surface: #1e1e1e;
    --darker-surface: #171717;
    --text-primary: #ffffff;
    --text-secondary: #aaaaaa;
    --success: #4caf50;
    --error: #f44336;
    --warning: #ff9800;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    color: var(--text-primary);
    line-height: 1.6;
    min-height: 100vh;
}

.container {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

.logo-container {
    text-align: center;
    margin-bottom: 30px;
    padding-top: 20px;
}

.logo {
    height: 60px;
    margin-bottom: 15px;
}

.brand-name {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 5px;
    text-shadow: 0 2px 10px rgba(255, 107, 0, 0.3);
}

.content-container {
    background: linear-gradient(135deg, rgba(30, 30, 30, 0.9), rgba(23, 23, 23, 0.9));
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 35px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.08);
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
}

.content-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
}

.page-title {
    font-size: 2rem;
    margin-bottom: 25px;
    text-align: center;
    font-weight: 700;
    color: var(--primary-light);
    text-shadow: 0 2px 10px rgba(255, 107, 0, 0.3);
}

.last-updated {
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: 30px;
    font-size: 0.9rem;
    opacity: 0.8;
}

.intro-text {
    margin-bottom: 30px;
    font-size: 1rem;
    text-align: center;
    color: var(--text-secondary);
    line-height: 1.7;
}

.section {
    margin-bottom: 30px;
}

.section-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 15px;
    padding-bottom: 8px;
    border-bottom: 2px solid rgba(255, 107, 0, 0.3);
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 50px;
    height: 2px;
    background: var(--primary);
}

.section-content {
    font-size: 0.95rem;
    line-height: 1.7;
}

.section-content p {
    margin-bottom: 12px;
}

.section-content ul {
    margin-bottom: 15px;
    padding-left: 20px;
}

.section-content li {
    margin-bottom: 10px;
    position: relative;
}

.section-content li::before {
    content: '•';
    color: var(--primary);
    font-weight: bold;
    position: absolute;
    left: -15px;
}

.section-content strong {
    color: var(--primary);
    font-weight: 600;
}

.section-content h3 {
    color: var(--primary);
    margin: 25px 0 15px 0;
    font-size: 1.2rem;
    font-weight: 600;
}

.game-info {
    background: linear-gradient(135deg, rgba(255, 107, 0, 0.08), rgba(224, 93, 0, 0.08));
    border: 1px solid rgba(255, 107, 0, 0.2);
    border-radius: 16px;
    padding: 25px;
    margin: 25px 0;
    position: relative;
    overflow: hidden;
}

.game-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
}

.game-info h3 {
    color: var(--primary);
    margin-bottom: 15px;
    font-size: 1.2rem;
    font-weight: 600;
}

.difficulty-levels {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 25px 0;
}

.difficulty-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.difficulty-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 15px 40px rgba(255, 107, 0, 0.2);
}

.difficulty-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.difficulty-card:hover::before {
    transform: scaleX(1);
}

.difficulty-card h4 {
    color: var(--primary);
    margin-bottom: 10px;
    font-size: 1.1rem;
    font-weight: 600;
}

.difficulty-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
    margin: 35px 0;
}

.contact-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.contact-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
    box-shadow: 0 20px 50px rgba(255, 107, 0, 0.25);
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.contact-card:hover::before {
    transform: scaleX(1);
}

.contact-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
}

.contact-icon i {
    color: var(--primary);
    transition: all 0.3s ease;
}

.contact-card:hover .contact-icon i {
    transform: scale(1.1);
    color: var(--primary-light);
}

.contact-card h3 {
    color: var(--primary);
    margin-bottom: 12px;
    font-size: 1.2rem;
    font-weight: 600;
}

.contact-card p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.5;
}

.contact-form {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 35px;
    margin: 35px 0;
    position: relative;
    overflow: hidden;
}

.contact-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-bottom: 25px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    color: var(--text-primary);
    font-weight: 500;
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: var(--text-primary);
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.06);
    box-shadow: 0 0 0 4px rgba(255, 107, 0, 0.1);
    transform: translateY(-2px);
}

.form-group textarea {
    resize: vertical;
    min-height: 130px;
}

.error-message {
    color: var(--error);
    font-size: 0.85rem;
    margin-top: 8px;
    display: block;
}

.submit-btn {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    border: none;
    padding: 18px 35px;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    margin-top: 15px;
    position: relative;
    overflow: hidden;
}

.submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.submit-btn:hover::before {
    left: 100%;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 107, 0, 0.4);
}

.submit-btn:active {
    transform: translateY(-1px);
}

.faq-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    margin-bottom: 18px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(255, 107, 0, 0.3);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.faq-question {
    background: rgba(255, 107, 0, 0.08);
    padding: 18px 22px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(255, 107, 0, 0.12);
}

.faq-question h4 {
    color: var(--primary);
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
}

.faq-answer {
    padding: 0 22px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-answer.active {
    padding: 22px;
    max-height: 500px;
}

.faq-toggle {
    color: var(--primary);
    font-size: 1.3rem;
    transition: transform 0.3s ease;
    font-weight: bold;
}

.faq-toggle.active {
    transform: rotate(45deg);
}

/* Additional modern styling */
.content-container ol {
    padding-left: 20px;
    margin-bottom: 15px;
}

.content-container ol li {
    margin-bottom: 10px;
    line-height: 1.6;
}

.content-container ol li strong {
    color: var(--primary);
    font-weight: 600;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Selection styling */
::selection {
    background: rgba(255, 107, 0, 0.3);
    color: white;
}

::-moz-selection {
    background: rgba(255, 107, 0, 0.3);
    color: white;
}

/* Scrollbar styling */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
}

::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

@media (max-width: 768px) {
    .container {
        padding: 15px;
    }
    
    .content-container {
        padding: 25px;
        border-radius: 16px;
    }
    
    .page-title {
        font-size: 1.6rem;
    }
    
    .section-title {
        font-size: 1.2rem;
    }
    
    .difficulty-levels {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .contact-info-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .logo {
        height: 50px;
    }
    
    .brand-name {
        font-size: 1.5rem;
    }
    
    .contact-form {
        padding: 25px;
    }
    
    .contact-card {
        padding: 25px;
    }
}
