/* Register/Login Page Specific Styles */

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #1C1C1C 0%, #2a2a2a 100%);
    padding: 6rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #e0e0e0;
    line-height: 1.7;
}

.hero-subtitle {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    color: #F7D26C;
    font-weight: 600;
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Login Steps Section */
.login-steps {
    background: #2a2a2a;
    padding: 5rem 0;
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 2rem;
    background: #333;
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.step:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(247, 210, 108, 0.2);
}

.step-number {
    background: linear-gradient(180deg, rgba(251, 225, 146, 1) 0%, rgba(235, 170, 91, 1) 100%);
    color: #333333;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.step-content h3 {
    color: #F7D26C;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.step-content p {
    color: #ccc;
    margin: 0;
}

.login-help {
    background: #333;
    padding: 2rem;
    border-radius: 12px;
    margin: 3rem 0;
    border-left: 4px solid #F7D26C;
}

.login-help h3 {
    color: #F7D26C;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.login-help p {
    margin-bottom: 1.5rem;
    color: #e0e0e0;
}

.game-links {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.game-links li {
    background: #444;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    transition: background 0.3s ease;
}

.game-links li:hover {
    background: #F7D26C;
}

.game-links a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
}

.game-links a:hover {
    color: #333333;
}

.device-comparison {
    margin: 3rem 0;
    overflow-x: auto;
}

.device-comparison table {
    min-width: 500px;
}

/* Trust & Security Section */
.trust-security {
    background: #1C1C1C;
    padding: 5rem 0;
}

.security-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.security-feature {
    text-align: center;
    padding: 2rem;
    background: #333;
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.security-feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(247, 210, 108, 0.2);
}

.security-feature i {
    font-size: 3rem;
    color: #F7D26C;
    margin-bottom: 1rem;
    display: block;
}

.security-feature h3 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.security-feature p {
    color: #ccc;
    margin: 0;
    font-size: 0.95rem;
}

.security-table {
    margin: 3rem 0;
    overflow-x: auto;
}

.security-table table {
    min-width: 400px;
}

.expert-insight {
    background: #333;
    padding: 2rem;
    border-radius: 12px;
    margin: 3rem 0;
    border-left: 4px solid #F7D26C;
}

.expert-insight p {
    margin-bottom: 1rem;
    color: #e0e0e0;
    line-height: 1.6;
}

.expert-insight a {
    color: #F7D26C;
    font-weight: 600;
}

.access-features {
    margin: 3rem 0;
}

.access-features h3 {
    color: #F7D26C;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.access-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.access-list li {
    background: #333;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    transition: background 0.3s ease;
}

.access-list li:hover {
    background: #444;
}

.access-list a {
    color: #F7D26C;
    font-weight: 600;
    text-decoration: none;
}

.access-list a:hover {
    color: #ffffff;
}

/* Reviews Section */
.reviews-section {
    background: #2a2a2a;
    padding: 5rem 0;
}

.reviews {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.review {
    background: #333;
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid #F7D26C;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.review:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(247, 210, 108, 0.2);
}

.review::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 4rem;
    color: #F7D26C;
    line-height: 1;
}

.review p {
    color: #e0e0e0;
    font-style: italic;
    margin: 0;
}

.expert-note {
    background: #333;
    padding: 2rem;
    border-radius: 12px;
    margin: 3rem 0;
    text-align: center;
    font-style: italic;
}

.expert-note a {
    color: #F7D26C;
    font-weight: 600;
}

/* FAQ Section */
.faq-section {
    background: #1C1C1C;
    padding: 5rem 0;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: #333;
    margin-bottom: 1rem;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-2px);
}

.faq-item h3 {
    background: #F7D26C;
    color: #333333;
    padding: 1.5rem;
    margin: 0;
    cursor: pointer;
    transition: background 0.3s ease;
    position: relative;
}

.faq-item h3:hover {
    background: #e6c05a;
}

.faq-item h3::after {
    content: '+';
    position: absolute;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    font-weight: bold;
}

.faq-item.active h3::after {
    content: '-';
}

.faq-item p {
    padding: 1.5rem;
    margin: 0;
    background: #2a2a2a;
    color: #e0e0e0;
    display: none;
}

.faq-item.active p {
    display: block;
}

.faq-item a {
    color: #F7D26C;
    font-weight: 600;
}

.conclusion {
    background: #333;
    padding: 2rem;
    border-radius: 12px;
    margin: 3rem 0;
    text-align: center;
    border-left: 4px solid #F7D26C;
}

.conclusion p {
    color: #e0e0e0;
    font-size: 1.1rem;
    line-height: 1.7;
    margin: 0;
}

/* Responsive Design for Register Page */
@media (max-width: 768px) {
    .hero {
        padding: 4rem 0;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-actions .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .steps-container {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .step {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }
    
    .step-number {
        align-self: center;
    }
    
    .security-features {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .security-feature {
        padding: 1.5rem;
    }
    
    .security-feature i {
        font-size: 2rem;
    }
    
    .reviews {
        grid-template-columns: 1fr;
    }
    
    .review {
        padding: 1.5rem;
    }
    
    .access-list {
        grid-template-columns: 1fr;
    }
    
    .game-links {
        flex-direction: column;
    }
    
    .faq-item h3 {
        padding: 1rem;
        font-size: 1rem;
    }
    
    .faq-item p {
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.75rem;
    }
    
    .hero-description {
        font-size: 0.95rem;
    }
    
    .step {
        padding: 1rem;
    }
    
    .step-number {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .security-feature {
        padding: 1rem;
    }
    
    .review {
        padding: 1rem;
    }
    
    .expert-note {
        padding: 1rem;
    }
    
    .conclusion {
        padding: 1rem;
    }
}

/* Animation for steps */
.step {

}

.step.visible {

}

/* Hover effects for interactive elements */
.step:hover {
    transform: translateY(-5px) scale(1.02);
}

.security-feature:hover {
    transform: translateY(-5px) scale(1.02);
}

.review:hover {
    transform: translateY(-2px) scale(1.01);
}

/* Loading states */
.btn.loading {
    opacity: 0.7;
    pointer-events: none;
    position: relative;
}

.btn.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid transparent;
    border-top: 2px solid currentColor;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}


