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

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #000000;
    background-color: #F3F2EC;
}

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

/* Header Styles */
.header {
    background: #1E93AB;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    padding: 1rem 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

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

/* Breadcrumb Navigation */
.breadcrumb {
    margin: 0.5rem 0;
}

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

.breadcrumb-item {
    color: #FFFFFF;
}

.breadcrumb-item:not(:last-child)::after {
    content: '>';
    margin-left: 0.5rem;
    color: #DCDCDC;
}

.breadcrumb-item a {
    color: #FFFFFF;
    text-decoration: none;
}

.breadcrumb-item a:hover {
    text-decoration: underline;
}

/* Navigation Menu */
.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
}

.nav-link {
    color: #FFFFFF;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 0.5rem 0;
}

.nav-link:hover,
.nav-link.active {
    color: #E62727;
    text-decoration: none;
}

/* Auth Buttons */
.auth-buttons {
    display: flex;
    gap: 1rem;
    align-items: center;
}

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
    position: relative;
}

.hamburger-line {
    width: 25px;
    height: 3px;
    background: #FFFFFF;
    margin: 2px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

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

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

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

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(30, 147, 171, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-content {
    position: absolute;
    top: 0;
    right: 0;
    width: 320px;
    height: 100%;
    background: #1E93AB;
    padding: 2rem 0;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.3);
}

.mobile-menu-overlay.active .mobile-menu-content {
    transform: translateX(0);
}

/* Mobile Menu Header */
.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 2rem;
}

.mobile-menu-close {
    background: transparent;
    border: none;
    color: #FFFFFF;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    transition: background 0.3s ease;
}

.mobile-menu-close:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Mobile Menu Navigation */
.mobile-menu-nav {
    padding: 0 2rem;
    margin-bottom: 2rem;
}

.mobile-menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-menu-item {
    margin-bottom: 0.5rem;
}

.mobile-menu-link {
    display: block;
    color: #FFFFFF;
    text-decoration: none;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-weight: 500;
    position: relative;
}

.mobile-menu-link:hover,
.mobile-menu-link.active {
    background: rgba(230, 39, 39, 0.2);
    color: #FFFFFF;
    transform: translateX(5px);
}

.mobile-menu-link.active::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 20px;
    background: #E62727;
    border-radius: 2px;
}

/* Mobile Menu Actions */
.mobile-menu-actions {
    padding: 0 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.btn-mobile {
    width: 100%;
    text-align: center;
    padding: 1rem;
    font-size: 1rem;
    font-weight: 600;
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.btn-primary {
    background: #E62727;
    color: #FFFFFF;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(230, 39, 39, 0.2);
}

.btn-primary::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;
}

.btn-primary:hover {
    background: #C11E1E;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(230, 39, 39, 0.4);
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-outline {
    background: transparent;
    color: #FFFFFF;
    border: 2px solid #FFFFFF;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.btn-outline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: #FFFFFF;
    transition: width 0.3s ease;
    z-index: -1;
}

.btn-outline:hover {
    color: #1E93AB;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}

.btn-outline:hover::before {
    width: 100%;
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.btn-small {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
}

/* Main Content */
.main-content {
    min-height: calc(100vh - 200px);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #1E93AB 0%, #0F6B7A 100%);
    color: #FFFFFF;
    padding: 6rem 0 8rem 0;
    display: flex;
    align-items: center;
    min-height: 85vh;
    position: relative;
    overflow: hidden;
}

.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"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.03)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.03)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.02)"/><circle cx="10" cy="60" r="0.5" fill="rgba(255,255,255,0.02)"/><circle cx="90" cy="40" r="0.5" fill="rgba(255,255,255,0.02)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.4;
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    top: 10%;
    right: 10%;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(230, 39, 39, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
    pointer-events: none;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
    }
}

.hero-container {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
    padding: 2rem 0 4rem 0;
    position: relative;
    z-index: 2;
    min-height: 60vh;
}

.hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    height: 100%;
    padding: 2rem 0;
    max-width: 100%;
}

.hero h1 {
    font-size: 3.8rem;
    font-weight: 700;
    margin-bottom: 2rem;
    line-height: 1.1;
    text-align: left;
    letter-spacing: -0.02em;
    color: #FFFFFF;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease-out;
    position: relative;
    max-width: 100%;
    word-wrap: break-word;
}

.hero h1::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #E62727, #FF6B6B);
    border-radius: 2px;
    animation: expandLine 1.5s ease-out 0.8s both;
}

@keyframes expandLine {
    from {
        width: 0;
    }
    to {
        width: 60px;
    }
}

.hero-description {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    line-height: 1.6;
    text-align: left;
    max-width: 100%;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-start;
    margin-top: 0.5rem;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    height: 100%;
    min-height: 400px;
}

.hero-image::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background: linear-gradient(135deg, #E62727 0%, #FF6B6B 100%);
    border-radius: 20px;
    opacity: 0.1;
    z-index: -1;
    animation: pulse 3s ease-in-out infinite;
}

.hero-image img {
    width: 100%;
    height: auto;
    max-width: 100%;
    max-height: 450px;
    object-fit: contain;
    border-radius: 15px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease;
    animation: fadeInRight 1s ease-out 0.6s both;
}

.hero-image img:hover {
    transform: translateY(-10px) scale(1.02);
}

/* Hero Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.1;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.15;
    }
}


/* Page Header */
.page-header {
    background: #1E93AB;
    color: #FFFFFF;
    padding: 3rem 0;
    text-align: center;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.page-subtitle {
    font-size: 1.1rem;
    opacity: 0.8;
}

/* Section Styles */
section {
    padding: 4rem 0;
}

section:nth-child(even) {
    background-color: #DCDCDC;
}

/* About Section */
.about-section {
    background: #F3F2EC;
}

.about-section h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #000000;
    text-align: center;
}

.about-section p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #000000;
    text-align: justify;
}

/* Features Section */
.features-section {
    background: #DCDCDC;
}

.features-section h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #000000;
    text-align: center;
}

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

.feature-card {
    background: #F3F2EC;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-card img {
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #000000;
}

.feature-card p {
    color: #000000;
    line-height: 1.6;
}

/* Registration Section */
.registration-section {
    background: #F3F2EC;
}

.registration-section h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #000000;
    text-align: center;
}

.registration-steps {
    display: grid;
    gap: 3rem;
}

.step {
    background: #DCDCDC;
    padding: 2rem;
    border-radius: 10px;
    border-left: 4px solid #E62727;
}

.step h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #000000;
}

.step p {
    color: #000000;
    line-height: 1.6;
    margin-bottom: 1rem;
}

/* Advantages Section */
.advantages-section {
    background: #DCDCDC;
}

.advantages-section h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #000000;
    text-align: center;
}

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

.advantage-item {
    background: #F3F2EC;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.advantage-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #000000;
}

.advantage-item p {
    color: #000000;
    line-height: 1.6;
}

/* FAQ Section */
.faq-section {
    background: #F3F2EC;
}

.faq-section h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #000000;
    text-align: center;
}

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

.faq-item {
    background: #DCDCDC;
    margin-bottom: 1rem;
    border-radius: 10px;
    overflow: hidden;
}

.faq-item h3 {
    background: #1E93AB;
    color: #FFFFFF;
    padding: 1.5rem;
    margin: 0;
    font-size: 1.2rem;
    cursor: pointer;
    transition: background 0.3s ease;
}

.faq-item h3:hover {
    background: #E62727;
}

.faq-item p {
    padding: 1.5rem;
    margin: 0;
    color: #000000;
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    background: #1E93AB;
    color: #FFFFFF;
    text-align: center;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

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

/* About Page Styles */
.content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    margin-top: 2rem;
}

.content-main h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #000000;
}

.content-main h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #000000;
    margin-top: 2rem;
}

.content-main p {
    color: #000000;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.values-list {
    list-style: none;
    padding: 0;
}

.values-list li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
}

.values-list li:last-child {
    border-bottom: none;
}

.sidebar-card {
    background: #F3F2EC;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

.sidebar-card h4 {
    color: #000000;
    margin-bottom: 1rem;
}

.facts-list {
    list-style: none;
    padding: 0;
}

.facts-list li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
}

.facts-list li:last-child {
    border-bottom: none;
}

/* Team Section */
.team-section {
    background: #DCDCDC;
}

.team-section h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #000000;
    text-align: center;
}

.team-section p {
    text-align: center;
    color: #000000;
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

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

.team-member {
    background: #F3F2EC;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.team-member img {
    border-radius: 50%;
    margin-bottom: 1rem;
}

.team-member h4 {
    color: #000000;
    margin-bottom: 0.5rem;
}

.team-member p {
    color: #000000;
    font-size: 0.9rem;
}

/* Policy Content */
.policy-content,
.terms-content,
.disclaimer-content {
    background: #F3F2EC;
}

.policy-content h2,
.terms-content h2,
.disclaimer-content h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #000000;
}

.policy-content h3,
.terms-content h3,
.disclaimer-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #000000;
    margin-top: 2rem;
}

.policy-content p,
.terms-content p,
.disclaimer-content p {
    color: #000000;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.policy-content ul,
.terms-content ul,
.disclaimer-content ul {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.policy-content li,
.terms-content li,
.disclaimer-content li {
    color: #000000;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

/* Support Page Styles */
.support-content {
    background: #F3F2EC;
}

.support-content h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #000000;
}

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

.support-method {
    background: #DCDCDC;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.support-method img {
    margin-bottom: 1rem;
}

.support-method h3 {
    color: #000000;
    margin-bottom: 1rem;
}

.support-method p {
    color: #000000;
    margin-bottom: 1.5rem;
}

.faq-section {
    margin: 3rem 0;
}

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

.contact-item {
    background: #DCDCDC;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
}

.contact-item h4 {
    color: #000000;
    margin-bottom: 1rem;
}

.contact-item p {
    color: #000000;
    margin-bottom: 0.5rem;
}

/* 404 Error Page Styles */
.error-section {
    background: #F3F2EC;
    padding: 4rem 0;
    text-align: center;
}

.error-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 4rem;
}

.error-image img {
    width: 100%;
    height: auto;
    max-width: 400px;
}

.error-text h1 {
    font-size: 3rem;
    color: #000000;
    margin-bottom: 1rem;
}

.error-message {
    font-size: 1.2rem;
    color: #000000;
    margin-bottom: 1rem;
}

.error-suggestion {
    font-size: 1.1rem;
    color: #000000;
    margin-bottom: 2rem;
}

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

.helpful-links {
    margin: 4rem 0;
}

.helpful-links h2 {
    font-size: 2rem;
    color: #000000;
    margin-bottom: 2rem;
}

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

.link-card {
    background: #DCDCDC;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.link-card:hover {
    transform: translateY(-5px);
}

.link-card img {
    margin-bottom: 1rem;
}

.link-card h3 {
    color: #000000;
    margin-bottom: 1rem;
}

.link-card p {
    color: #000000;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.search-section {
    background: #DCDCDC;
    padding: 3rem;
    border-radius: 10px;
    text-align: center;
}

.search-section h2 {
    color: #000000;
    margin-bottom: 1rem;
}

.search-section p {
    color: #000000;
    margin-bottom: 2rem;
}

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

/* Footer */
.footer {
    background: #1E93AB;
    color: #FFFFFF;
    padding: 3rem 0 1rem;
}

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

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: #E62727;
}

.footer-section p {
    color: #DCDCDC;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

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

.footer-section ul li a {
    color: #DCDCDC;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #E62727;
}

.footer-actions {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

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

/* Register Section */
.register-section {
    background: #F8F5ED;
    padding: 4rem 0;
}

.register-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.register-content {
    max-width: 100%;
}

.register-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #333333;
    text-align: left;
    font-weight: 700;
}

.register-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #333333;
    text-align: left;
    line-height: 1.6;
}

.register-content h3 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: #333333;
    text-align: left;
    font-weight: 600;
}

.register-steps {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.step-card {
    display: flex;
    align-items: flex-start;
    padding: 1.5rem;
    background: #A0E6E6;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.step-card:hover {
    transform: translateY(-2px);
}

.step-icon {
    background: #7DD3D3;
    color: #FFFFFF;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.5rem;
    flex-shrink: 0;
}

.step-icon svg {
    width: 24px;
    height: 24px;
}

.step-content h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #333333;
    font-weight: 600;
}

.step-content p {
    color: #333333;
    line-height: 1.6;
    margin: 0;
}

.step-content strong {
    color: #E62727;
    font-weight: 700;
}

.btn-register {
    background: #A0E6E6;
    color: #333333;
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    display: inline-block;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
    border: none;
}

.btn-register:hover {
    background: #7DD3D3;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.login-prompt {
    margin-top: 1rem;
    color: #333333;
    font-size: 1rem;
}

.login-link {
    color: #E62727;
    text-decoration: none;
    font-weight: 600;
}

.login-link:hover {
    text-decoration: underline;
}

.register-images {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    justify-content: center;
}

.register-images img {
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
    max-width: 280px;
    height: auto;
}

.register-images img:hover {
    transform: scale(1.05);
}

/* Login Section */
.login-section {
    background: #F5F5DC;
    padding: 4rem 0;
}

.login-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.login-content {
    max-width: 100%;
}

.login-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #333333;
    text-align: left;
    font-weight: 700;
}

.login-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #333333;
    text-align: left;
    line-height: 1.6;
}

.login-content h3 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: #333333;
    text-align: left;
    font-weight: 600;
}

.login-steps {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.login-benefits {
    background: #F8F5ED;
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    border: 1px solid #E0E0E0;
}

.login-benefits h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #333333;
    font-weight: 600;
}

.benefits-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.benefits-list li {
    padding: 0.5rem 0;
    color: #333333;
    position: relative;
    padding-left: 1.5rem;
    font-size: 1rem;
}

.benefits-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #333333;
    font-weight: bold;
    font-size: 1.2rem;
}

.btn-login {
    background: #F8F5ED;
    color: #333333;
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    display: inline-block;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
    border: 2px solid #E0E0E0;
}

.btn-login:hover {
    background: #E0E0E0;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.register-prompt {
    margin-top: 1rem;
    color: #333333;
    font-size: 1rem;
}

.register-link {
    color: #E62727;
    text-decoration: none;
    font-weight: 600;
}

.register-link:hover {
    text-decoration: underline;
}

.login-image {
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-image img {
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
    max-width: 350px;
    height: auto;
}

.login-image img:hover {
    transform: scale(1.05);
}

/* Games Slider Section */
.games-slider-section {
    background: #F8F5ED;
    padding: 4rem 0;
}

.games-slider-section h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #333333;
    text-align: center;
    font-weight: 700;
}

.games-slider-wrapper {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 2rem;
    align-items: start;
}

.main-image-container {
    position: relative;
}

.main-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    max-width: 500px;
    margin: 0 auto;
}

.main-image-wrapper:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}

.main-image {
    width: 100%;
    height: auto;
    display: block;
    transition: opacity 0.5s ease;
    border-radius: 20px;
}

.nav-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.nav-arrow:hover {
    background: #E62727;
    color: white;
    transform: translateY(-50%) scale(1.1);
}

.nav-arrow-left {
    left: 20px;
}

.nav-arrow-right {
    right: 20px;
}

.nav-arrow svg {
    width: 24px;
    height: 24px;
}

.thumbnails-container {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    max-width: 250px;
}

.thumbnails-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
    grid-template-rows: repeat(3, 1fr);
}

.thumbnail-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    background: #FFFFFF;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border: 3px solid transparent;
    height: 80px;
    width: 100%;
}

.thumbnail-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    border-color: #E62727;
}

.thumbnail-item.active {
    border-color: #E62727;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(230, 39, 39, 0.3);
}

.thumbnail-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.thumbnail-item:hover .thumbnail-image {
    transform: scale(1.05);
}

.thumbnail-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
}

.game-title {
    font-weight: 600;
    font-size: 1rem;
}

.play-btn {
    background: #E62727;
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.play-btn:hover {
    background: #C11E1E;
    transform: scale(1.05);
}

/* All thumbnails same size in 2x3 grid */

/* Responsive Design for Games Slider */
@media (max-width: 768px) {
    .games-slider-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .thumbnails-container {
        order: -1;
    }
    
    .thumbnails-grid {
        display: flex;
        overflow-x: auto;
        gap: 1rem;
        padding: 0.5rem 0;
        scrollbar-width: thin;
        scrollbar-color: #E62727 #f1f1f1;
    }
    
    .thumbnails-grid::-webkit-scrollbar {
        height: 6px;
    }
    
    .thumbnails-grid::-webkit-scrollbar-track {
        background: #f1f1f1;
        border-radius: 3px;
    }
    
    .thumbnails-grid::-webkit-scrollbar-thumb {
        background: #E62727;
        border-radius: 3px;
    }
    
    .thumbnail-item {
        flex: 0 0 120px;
        height: 80px;
    }
    
    .thumbnail-image {
        height: 100%;
    }
    
    .nav-arrow {
        width: 40px;
        height: 40px;
    }
    
    .nav-arrow-left {
        left: 10px;
    }
    
    .nav-arrow-right {
        right: 10px;
    }
    
    .nav-arrow svg {
        width: 20px;
        height: 20px;
    }
}

@media (max-width: 480px) {
    .games-slider-section h2 {
        font-size: 2rem;
    }
    
    .thumbnail-item {
        flex: 0 0 100px;
        height: 70px;
    }
    
    .game-title {
        font-size: 0.9rem;
    }
    
    .play-btn {
        padding: 0.4rem 0.8rem;
        font-size: 0.8rem;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 1rem;
    }
    
    .nav-menu {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-content {
        order: 1;
    }
    
    .hero-image {
        order: 2;
    }
    
    .hero h1 {
        font-size: 2.5rem;
        text-align: center;
    }
    
    .hero-description {
        text-align: center;
        font-size: 1.1rem;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .content-grid {
        grid-template-columns: 1fr;
    }
    
    .error-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .error-text h1 {
        font-size: 2rem;
    }
    
    .register-wrapper,
    .login-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .register-images {
        flex-direction: column;
        align-items: center;
        order: -1;
    }
    
    .register-images img {
        max-width: 300px;
    }
    
    .step-card {
        flex-direction: column;
        text-align: center;
        padding: 1rem;
    }
    
    .step-icon {
        margin-right: 0;
        margin-bottom: 1rem;
        align-self: center;
    }
    
    .register-section h2,
    .login-section h2 {
        text-align: center;
    }
    
    .register-description,
    .login-description {
        text-align: center;
    }
    
    .register-content h3,
    .login-content h3 {
        text-align: center;
    }
    
    .btn-register,
    .btn-login {
        display: block;
        text-align: center;
        margin: 0 auto 1rem;
    }
    
    .cta-buttons,
    .error-actions,
    .search-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 2rem 0;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-actions {
        flex-direction: column;
        gap: 1rem;
    }
    
    .btn {
        width: 100%;
        max-width: 250px;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    section {
        padding: 2rem 0;
    }
    
    .register-section h2,
    .login-section h2 {
        font-size: 2rem;
    }
    
    .register-description,
    .login-description {
        font-size: 1rem;
    }
    
    .step-card {
        padding: 1rem;
    }
    
    .register-actions,
    .login-actions {
        padding: 1.5rem;
    }
    
    .step-icon {
        width: 40px;
        height: 40px;
    }
    
    .step-icon svg {
        width: 20px;
        height: 20px;
    }
    
    .features-grid,
    .advantages-grid,
    .team-grid,
    .support-methods,
    .contact-info,
    .links-grid {
        grid-template-columns: 1fr;
    }
}
