/* PureWin.cc - Premium Gaming Platform Styles */
/* Theme Colors: Navy Blue (#0A1F44), Deep Navy (#001F3F), Black (#000000), Charcoal (#1A1A1A), Steel Gray (#2C2C2C), Electric Blue (#1E90FF), White (#FFFFFF) */

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #FFFFFF;
    background: linear-gradient(135deg, #0A1F44 0%, #001F3F 100%);
    min-height: 100vh;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
    color: #FFFFFF;
}

h2 {
    font-size: 2rem;
    color: #1E90FF;
}

h3 {
    font-size: 1.5rem;
    color: #FFFFFF;
}

p {
    margin-bottom: 1rem;
    color: #E0E0E0;
}

/* Navigation */
.navbar {
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 0;
    border-bottom: 2px solid #1E90FF;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo .logo-img {
    height: 40px;
    width: auto;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: #FFFFFF;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: #1E90FF;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #1E90FF;
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.hamburger-line {
    width: 25px;
    height: 3px;
    background: #FFFFFF;
    transition: 0.3s;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, #1E90FF 0%, #0066CC 100%);
    color: #FFFFFF;
    box-shadow: 0 4px 15px rgba(30, 144, 255, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(30, 144, 255, 0.4);
}

.btn-secondary {
    background: transparent;
    color: #1E90FF;
    border: 2px solid #1E90FF;
}

.btn-secondary:hover {
    background: #1E90FF;
    color: #FFFFFF;
    transform: translateY(-2px);
}

.btn-login {
    background: transparent;
    color: #FFFFFF;
    border: 1px solid #2C2C2C;
}

.btn-login:hover {
    background: #2C2C2C;
    color: #1E90FF;
}

.btn-register {
    background: linear-gradient(135deg, #1E90FF 0%, #0066CC 100%);
    color: #FFFFFF;
}

.btn-register:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(30, 144, 255, 0.4);
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.1rem;
}

/* Breadcrumb */
.breadcrumb {
    background: rgba(26, 26, 26, 0.8);
    padding: 1rem 0;
    margin-top: 80px;
}

.breadcrumb-list {
    display: flex;
    list-style: none;
    gap: 0.5rem;
}

.breadcrumb-item::after {
    content: '>';
    color: #1E90FF;
    margin-left: 0.5rem;
}

.breadcrumb-item:last-child::after {
    display: none;
}

.breadcrumb-link {
    color: #1E90FF;
    text-decoration: none;
}

.breadcrumb-link:hover {
    color: #FFFFFF;
}

/* Hero Section */
.hero {
    padding: 4rem 0;
    background: linear-gradient(135deg, #0A1F44 0%, #001F3F 50%, #1A1A1A 100%);
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-title {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #FFFFFF 0%, #1E90FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #E0E0E0;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-img {
    width: 100%;
    height: auto;
    border-radius: 12px;
}

/* Sections */
.section-title {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
}

/* Features Section */
.features {
    padding: 4rem 0;
    background: rgba(26, 26, 26, 0.3);
}

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

.feature-card {
    background: rgba(0, 0, 0, 0.6);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    border: 1px solid #2C2C2C;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(30, 144, 255, 0.2);
    border-color: #1E90FF;
}

.feature-icon, .contact-icon {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.icon-img {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.icon-svg {
    width: 60px;
    height: 60px;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.icon-svg:hover {
    transform: scale(1.1);
    filter: drop-shadow(0 0 10px rgba(30, 144, 255, 0.5));
}

.feature-title {
    color: #1E90FF;
    margin-bottom: 1rem;
}

/* Registration Process Section */
.registration-process {
    padding: 4rem 0;
    background: linear-gradient(135deg, #001F3F 0%, #0A1F44 100%);
}

.process-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.process-img {
    width: 100%;
    height: auto;
    border-radius: 12px;
}

/* Advantages Section */
.advantages {
    padding: 4rem 0;
    background: rgba(26, 26, 26, 0.3);
}

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

.advantage-item {
    background: rgba(0, 0, 0, 0.6);
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #1E90FF;
}

.advantage-item h3 {
    color: #1E90FF;
    margin-bottom: 1rem;
}

/* FAQ Section */
.faq {
    padding: 4rem 0;
    background: linear-gradient(135deg, #0A1F44 0%, #001F3F 100%);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(0, 0, 0, 0.6);
    margin-bottom: 1rem;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #2C2C2C;
}

.faq-question {
    background: rgba(30, 144, 255, 0.1);
    padding: 1.5rem;
    margin: 0;
    color: #1E90FF;
    cursor: pointer;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: rgba(30, 144, 255, 0.2);
}

.faq-answer {
    padding: 1.5rem;
    margin: 0;
    color: #E0E0E0;
}

.internal-link {
    color: #1E90FF;
    text-decoration: none;
}

.internal-link:hover {
    color: #FFFFFF;
    text-decoration: underline;
}

/* CTA Section */
.cta {
    padding: 4rem 0;
    background: linear-gradient(135deg, #1A1A1A 0%, #000000 100%);
    text-align: center;
}

.cta-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #FFFFFF;
}

.cta-description {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #E0E0E0;
}

.cta-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Footer */
.footer {
    background: #000000;
    padding: 3rem 0 1rem;
    border-top: 2px solid #1E90FF;
}

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

.footer-title {
    color: #1E90FF;
    margin-bottom: 1rem;
}

.footer-subtitle {
    color: #FFFFFF;
    margin-bottom: 1rem;
}

.footer-description {
    color: #E0E0E0;
    margin-bottom: 1rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-link {
    color: #E0E0E0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #1E90FF;
}

.footer-text {
    color: #E0E0E0;
    margin-bottom: 0.5rem;
}

.footer-bottom {
    border-top: 1px solid #2C2C2C;
    padding-top: 1rem;
    text-align: center;
}

.footer-copyright {
    color: #E0E0E0;
    margin: 0;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #1E90FF 0%, #0066CC 100%);
    color: #FFFFFF;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(30, 144, 255, 0.3);
    transition: all 0.3s ease;
    z-index: 1000;
}

.back-to-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(30, 144, 255, 0.4);
}

.back-to-top.show {
    display: flex;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(10px);
        padding: 2rem 0;
        transform: translateY(-100%);
        transition: transform 0.3s ease;
    }

    .nav-menu.active {
        transform: translateY(0);
    }

    .nav-list {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .nav-actions {
        flex-direction: column;
        gap: 0.5rem;
        margin-top: 1rem;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .mobile-menu-toggle.active .hamburger-line:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .mobile-menu-toggle.active .hamburger-line:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-toggle.active .hamburger-line:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-title {
        font-size: 2rem;
    }

    .process-content {
        grid-template-columns: 1fr;
    }

    .cta-actions {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 300px;
    }

    .section-title {
        font-size: 2rem;
    }

    .cta-title {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-title {
        font-size: 1.8rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .cta-title {
        font-size: 1.8rem;
    }

    .feature-card,
    .advantage-item {
        padding: 1rem;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus styles for accessibility */
.btn:focus,
.nav-link:focus,
.footer-link:focus,
.internal-link:focus {
    outline: 2px solid #1E90FF;
    outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .btn-primary {
        background: #1E90FF;
        border: 2px solid #FFFFFF;
    }
    
    .btn-secondary {
        border: 2px solid #1E90FF;
        color: #1E90FF;
    }
}

/* Additional Page Styles */
.about-hero, .policy-hero, .terms-hero, .disclaimer-hero, .support-hero {
    padding: 6rem 0 4rem;
    background: linear-gradient(135deg, #0A1F44 0%, #001F3F 100%);
    text-align: center;
}

.about-title, .policy-title, .terms-title, .disclaimer-title, .support-title {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #FFFFFF;
}

.about-subtitle, .policy-subtitle, .terms-subtitle, .disclaimer-subtitle, .support-subtitle {
    font-size: 1.2rem;
    color: #E0E0E0;
    margin-bottom: 1rem;
}

.policy-last-updated, .terms-last-updated, .disclaimer-last-updated {
    color: #1E90FF;
    font-size: 0.9rem;
}

/* About Us Page Styles */
.our-story, .mission-values {
    padding: 4rem 0;
}

.why-choose {
    padding: 5rem 0;
    background: linear-gradient(135deg, #001F3F 0%, #0A1F44 50%, #1A1A1A 100%);
    position: relative;
    overflow: hidden;
}

.why-choose::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"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%231E90FF" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="%231E90FF" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="%231E90FF" opacity="0.05"/><circle cx="10" cy="60" r="0.5" fill="%231E90FF" opacity="0.05"/><circle cx="90" cy="40" r="0.5" fill="%231E90FF" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
    z-index: 1;
}

.why-choose .container {
    position: relative;
    z-index: 2;
}

.our-story:nth-child(even) {
    background: rgba(26, 26, 26, 0.3);
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.choose-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    background: rgba(0, 0, 0, 0.4);
    padding: 4rem 3rem;
    border-radius: 20px;
    border: 1px solid rgba(30, 144, 255, 0.2);
    backdrop-filter: blur(10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.story-img, .choose-img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(30, 144, 255, 0.2);
    border: 2px solid rgba(30, 144, 255, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin: 2rem 0;
}

.choose-img:hover {
    transform: scale(1.02);
    box-shadow: 0 20px 45px rgba(30, 144, 255, 0.3);
}

.choose-text h3 {
    color: #1E90FF;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.choose-text h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(135deg, #1E90FF 0%, #0066CC 100%);
    border-radius: 2px;
}

.choose-text p {
    color: #E0E0E0;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

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

.value-card {
    background: rgba(0, 0, 0, 0.6);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    border: 1px solid #2C2C2C;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(30, 144, 255, 0.2);
    border-color: #1E90FF;
}

.value-card h3 {
    color: #1E90FF;
    margin-bottom: 1rem;
}

/* Policy Pages Styles */
.policy-content, .terms-content, .disclaimer-content {
    padding: 5rem 0;
    background: linear-gradient(135deg, #001F3F 0%, #0A1F44 50%, #1A1A1A 100%);
    position: relative;
    overflow: hidden;
}

.policy-content::before, .terms-content::before, .disclaimer-content::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"><defs><pattern id="policy-pattern" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1" fill="%231E90FF" opacity="0.05"/><circle cx="80" cy="80" r="1" fill="%231E90FF" opacity="0.05"/><circle cx="50" cy="10" r="0.5" fill="%231E90FF" opacity="0.03"/><circle cx="10" cy="50" r="0.5" fill="%231E90FF" opacity="0.03"/><circle cx="90" cy="50" r="0.5" fill="%231E90FF" opacity="0.03"/></pattern></defs><rect width="100" height="100" fill="url(%23policy-pattern)"/></svg>');
    opacity: 0.4;
    z-index: 1;
}

.policy-content .container, .terms-content .container, .disclaimer-content .container {
    position: relative;
    z-index: 2;
}

.policy-text, .terms-text, .disclaimer-text {
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.8;
    background: rgba(0, 0, 0, 0.6);
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid rgba(30, 144, 255, 0.2);
    backdrop-filter: blur(10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    position: relative;
}

.policy-text::before, .terms-text::before, .disclaimer-text::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #1E90FF 0%, #0066CC 50%, #1E90FF 100%);
    border-radius: 20px 20px 0 0;
}

.policy-text h2, .terms-text h2, .disclaimer-text h2 {
    color: #1E90FF;
    margin-top: 2rem;
    margin-bottom: 1.5rem;
    font-size: 2rem;
    font-weight: 700;
    position: relative;
    padding-left: 1rem;
    border-left: 4px solid #1E90FF;
    background: rgba(30, 144, 255, 0.1);
    padding: 1rem;
    border-radius: 8px;
    margin-left: -1rem;
}

.policy-text h3, .terms-text h3, .disclaimer-text h3 {
    color: #FFFFFF;
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-size: 1.4rem;
    font-weight: 600;
    position: relative;
    padding-left: 0.5rem;
}

.policy-text h3::before, .terms-text h3::before, .disclaimer-text h3::before {
    content: '▶';
    position: absolute;
    left: -0.5rem;
    color: #1E90FF;
    font-size: 0.8rem;
}

.policy-text ul, .terms-text ul, .disclaimer-text ul {
    margin: 1.5rem 0;
    padding-left: 2rem;
    background: rgba(30, 144, 255, 0.05);
    padding: 1.5rem 2rem;
    border-radius: 8px;
    border-left: 3px solid #1E90FF;
}

.policy-text li, .terms-text li, .disclaimer-text li {
    margin-bottom: 0.8rem;
    color: #E0E0E0;
    position: relative;
    padding-left: 1rem;
}

.policy-text li::before, .terms-text li::before, .disclaimer-text li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #1E90FF;
    font-weight: bold;
}

.policy-text p, .terms-text p, .disclaimer-text p {
    color: #E0E0E0;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
    line-height: 1.8;
}

.disclaimer-notice {
    background: rgba(30, 144, 255, 0.1);
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid #1E90FF;
    margin-top: 2rem;
}

.disclaimer-notice h3 {
    color: #1E90FF;
    margin-bottom: 1rem;
}

/* Support Page Styles */
.support-content {
    padding: 4rem 0;
}

.contact-methods, .support-faq, .support-categories, .contact-form-section {
    margin-bottom: 4rem;
}

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

.contact-card {
    background: rgba(0, 0, 0, 0.6);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    border: 1px solid #2C2C2C;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(30, 144, 255, 0.2);
    border-color: #1E90FF;
}

.contact-card h3 {
    color: #1E90FF;
    margin-bottom: 1rem;
}

.contact-link {
    color: #1E90FF;
    text-decoration: none;
    font-weight: 600;
    display: block;
    margin: 1rem 0;
}

.contact-link:hover {
    color: #FFFFFF;
}

.response-time {
    color: #E0E0E0;
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

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

.category-card {
    background: rgba(0, 0, 0, 0.6);
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #1E90FF;
}

.category-card h3 {
    color: #1E90FF;
    margin-bottom: 1rem;
}

/* Contact Form Styles */
.contact-form {
    max-width: 600px;
    margin: 0 auto;
    background: rgba(0, 0, 0, 0.6);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #2C2C2C;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    color: #FFFFFF;
    font-weight: 600;
}

.form-input, .form-select, .form-textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #2C2C2C;
    border-radius: 8px;
    background: rgba(26, 26, 26, 0.8);
    color: #FFFFFF;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
    outline: none;
    border-color: #1E90FF;
    box-shadow: 0 0 0 2px rgba(30, 144, 255, 0.2);
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

/* 404 Error Page Styles */
.error-404 {
    padding: 6rem 0 4rem;
    min-height: 70vh;
    display: flex;
    align-items: center;
}

.error-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.error-img {
    width: 300px;
    height: auto;
    margin-bottom: 2rem;
}

.error-title {
    font-size: 6rem;
    color: #1E90FF;
    margin-bottom: 1rem;
    font-weight: 900;
}

.error-subtitle {
    font-size: 2rem;
    color: #FFFFFF;
    margin-bottom: 1rem;
}

.error-description {
    font-size: 1.1rem;
    color: #E0E0E0;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.error-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.quick-links {
    background: rgba(0, 0, 0, 0.6);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #2C2C2C;
}

.quick-links h3 {
    color: #1E90FF;
    margin-bottom: 1.5rem;
    text-align: center;
}

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

.quick-link {
    display: block;
    padding: 0.8rem 1rem;
    background: rgba(30, 144, 255, 0.1);
    color: #1E90FF;
    text-decoration: none;
    border-radius: 6px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.quick-link:hover {
    background: rgba(30, 144, 255, 0.2);
    color: #FFFFFF;
    border-color: #1E90FF;
    transform: translateY(-2px);
}

/* Breadcrumb Current Item */
.breadcrumb-current {
    color: #E0E0E0;
}

/* Mobile Menu Styles */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(10px);
        transition: left 0.3s ease;
        z-index: 1000;
        padding: 2rem 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-list {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }
    
    .nav-item {
        margin: 0;
    }
    
    .nav-link {
        font-size: 1.2rem;
        padding: 1rem 2rem;
        border-radius: 8px;
        transition: all 0.3s ease;
    }
    
    .nav-link:hover {
        background: rgba(30, 144, 255, 0.1);
        color: #1E90FF;
    }
    
    .nav-actions {
        flex-direction: row;
        gap: 0.5rem;
        margin-top: 2rem;
        padding: 0 2rem;
        justify-content: center;
    }
    
    .btn-login, .btn-register {
        flex: 1;
        text-align: center;
        padding: 10px 16px;
        font-size: 0.9rem;
    }
    
    /* Hamburger Animation */
    .mobile-menu-toggle.active .hamburger-line:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .mobile-menu-toggle.active .hamburger-line:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-toggle.active .hamburger-line:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    /* Hero Section Mobile */
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    /* Features Grid Mobile */
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    /* Registration Process Mobile */
    .process-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    /* Advantages Grid Mobile */
    .advantages-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    /* FAQ Mobile */
    .faq-list {
        gap: 1rem;
    }
    
    .faq-question {
        font-size: 1rem;
        padding: 1rem;
    }
    
    .faq-answer {
        padding: 0 1rem 1rem;
    }
    
    /* CTA Mobile */
    .cta-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-large {
        width: 100%;
        max-width: 300px;
    }
}

/* Mobile Responsive for Additional Pages */
@media (max-width: 768px) {
    .story-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .choose-content {
        padding: 2rem 1.5rem;
        max-width: 90%;
    }
    
    .why-choose {
        padding: 3rem 0;
    }
    
    .policy-content, .terms-content, .disclaimer-content {
        padding: 3rem 0;
    }
    
    .policy-text, .terms-text, .disclaimer-text {
        padding: 2rem 1.5rem;
        max-width: 95%;
    }
    
    .policy-text h2, .terms-text h2, .disclaimer-text h2 {
        font-size: 1.6rem;
        margin-left: 0;
        padding: 0.8rem;
    }
    
    .policy-text h3, .terms-text h3, .disclaimer-text h3 {
        font-size: 1.2rem;
    }
    
    .error-title {
        font-size: 4rem;
    }
    
    .error-subtitle {
        font-size: 1.5rem;
    }
    
    .error-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
    
    .links-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    }
}
