/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #ff6b35;
    --secondary-color: #f7931e;
    --dark-bg: #1a1a1a;
    --darker-bg: #0f0f0f;
    --light-bg: #1e1b3d;
    --text-primary: #ffffff;
    --text-secondary: #cccccc;
    --text-muted: #999999;
    --accent-color: #ffd700;
    --success-color: #4caf50;
    --border-color: #333333;
    --card-bg: #2a2544;
    --hover-bg: #333333;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background-color: var(--dark-bg);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.main-header {
    background-color: var(--darker-bg);
    border-bottom: 2px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo a {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-weight: bold;
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.logo-image {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 8px;
    border: 2px solid var(--primary-color);
    transition: transform 0.3s ease;
}

.logo a:hover .logo-image {
    transform: scale(1.1);
}

.logo-text {
    display: inline-block;
}

.logo a:hover {
    color: var(--secondary-color);
}

.main-nav {
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu li a {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu li a:hover,
.nav-menu li a.active {
    color: var(--primary-color);
}

.nav-menu li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-menu li a:hover::after,
.nav-menu li a.active::after {
    width: 100%;
}

/* Navigation Dropdown Styles */
.nav-dropdown {
    position: relative;
}

.nav-dropdown-toggle {
    cursor: pointer;
}

.dropdown-arrow {
    font-size: 0.7em;
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.nav-dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.nav-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--darker-bg);
    border: 1px solid var(--border-color);
    border-radius: 5px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    list-style: none;
    padding: 10px 0;
    margin-top: 10px;
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.nav-dropdown:hover .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-dropdown-menu li {
    margin: 0;
}

.nav-dropdown-menu li a {
    display: block;
    padding: 10px 20px;
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 400;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.nav-dropdown-menu li a::after {
    display: none;
}

.nav-dropdown-menu li a:hover {
    background-color: var(--hover-bg);
    color: var(--primary-color);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    gap: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--text-primary);
    transition: all 0.3s ease;
}

/* Language Switcher */
.lang-switcher {
    position: relative;
    margin-left: 15px;
    padding-left: 15px;
    border-left: 1px solid var(--border-color);
    flex-shrink: 0;
}

.lang-switcher-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 10px;
    background: transparent;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 500;
    min-width: 70px;
}

.lang-switcher-btn:hover {
    background-color: var(--hover-bg);
}

.lang-switcher-btn .lang-flag {
    width: 20px;
    height: 15px;
    object-fit: cover;
    border-radius: 2px;
    flex-shrink: 0;
}

.lang-switcher-btn .lang-code {
    font-size: 14px;
    font-weight: 500;
}

.lang-switcher-btn .lang-arrow {
    width: 12px;
    height: 8px;
    color: var(--text-secondary);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.lang-switcher.active .lang-switcher-btn .lang-arrow {
    transform: rotate(180deg);
}

.lang-dropdown {
    position: absolute;
    top: calc(100% + 5px);
    right: 0;
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    min-width: 160px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    overflow: hidden;
}

.lang-switcher.active .lang-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    text-decoration: none;
    color: var(--text-primary);
    transition: background-color 0.2s ease;
    border-bottom: 1px solid var(--border-color);
}

.lang-option:last-child {
    border-bottom: none;
}

.lang-option:hover {
    background-color: var(--hover-bg);
}

.lang-option.active {
    background-color: var(--darker-bg);
    font-weight: 600;
}

.lang-option .lang-flag {
    width: 24px;
    height: 18px;
    object-fit: cover;
    border-radius: 2px;
    flex-shrink: 0;
}

.lang-option .lang-name {
    flex: 1;
    font-size: 14px;
}

.lang-option .lang-code {
    font-size: 12px;
    color: var(--text-secondary);
    font-weight: 500;
}

/* Local Navigation Menu */
.local-nav {
    background-color: var(--darker-bg);
    border-bottom: 1px solid var(--border-color);
    padding: 15px 0;
    position: sticky;
    top: 70px;
    z-index: 999;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.local-nav-content {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.local-nav-label {
    color: var(--text-secondary);
    font-weight: 600;
    font-size: 14px;
    white-space: nowrap;
}

.local-nav-menu {
    display: flex;
    gap: 10px;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: var(--primary-color) var(--darker-bg);
}

.local-nav-menu::-webkit-scrollbar {
    height: 4px;
}

.local-nav-menu::-webkit-scrollbar-track {
    background: var(--darker-bg);
}

.local-nav-menu::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 2px;
}

.local-nav-item {
    display: inline-block;
    padding: 8px 16px;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    background-color: var(--card-bg);
    transition: all 0.3s ease;
    white-space: nowrap;
    cursor: pointer;
}

.local-nav-item:hover {
    color: var(--text-primary);
    background-color: var(--hover-bg);
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

.local-nav-item.active {
    color: var(--text-primary);
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    font-weight: 600;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--darker-bg) 0%, var(--dark-bg) 100%);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(255, 107, 53, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-images {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.hero-chicken {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 15px;
    border: 3px solid var(--primary-color);
    box-shadow: 0 5px 20px rgba(255, 107, 53, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: float 3s ease-in-out infinite;
}

.hero-chicken:nth-child(1) {
    animation-delay: 0s;
}

.hero-chicken:nth-child(2) {
    animation-delay: 0.5s;
}

.hero-chicken:nth-child(3) {
    animation-delay: 1s;
}

.hero-chicken:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.6);
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-15px);
    }
}

.hero-section h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: var(--text-primary);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-section .subtitle {
    font-size: 20px;
    color: var(--text-secondary);
    margin-bottom: 30px;
}

.cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--text-primary);
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    font-size: 18px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.6);
}

/* Section Styles */
.section {
    padding: 60px 0;
}

.section-title {
    font-size: 36px;
    margin-bottom: 40px;
    text-align: center;
    color: var(--text-primary);
    position: relative;
    padding-bottom: 20px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

/* Casino Cards - Horizontal Layout */
.casinos-section {
    background-color: var(--light-bg);
}

.casinos-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 40px;
}

.casino-card {
    background-color: var(--card-bg);
    border-radius: 15px;
    padding: 25px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid var(--border-color);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    gap: 25px;
}

.casino-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.casino-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border-color: var(--primary-color);
}

.casino-card.featured {
    border-color: var(--primary-color);
    box-shadow: 0 5px 20px rgba(255, 107, 53, 0.2);
}

.featured-star {
    position: absolute;
    top: 10px;
    left: 10px;
    font-size: 24px;
    color: #ff4444;
    z-index: 10;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.5));
}

.casino-logo {
    flex-shrink: 0;
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-placeholder {
    width: 100%;
    height: 100%;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 16px;
    color: var(--text-primary);
    text-align: center;
    padding: 10px;
    background: linear-gradient(135deg, #1e3a5f 0%, #2a4a7a 100%);
    border: 2px solid var(--border-color);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.logo-placeholder.spinbara {
    background: linear-gradient(135deg, #1a4d7a 0%, #2d6ba3 100%);
}

.logo-placeholder.wyns {
    background: linear-gradient(135deg, #4a5568 0%, #2d3748 100%);
}

.logo-placeholder.dudespin {
    background: linear-gradient(135deg, #6b46c1 0%, #9333ea 100%);
}

.logo-placeholder.ggbet {
    background: linear-gradient(135deg, #ea580c 0%, #f97316 100%);
}

.logo-placeholder.fonbet {
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
}

.casino-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.bonus-summary {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.bonus-icon {
    font-size: 24px;
}

.bonus-label {
    font-weight: bold;
    color: var(--text-primary);
    font-size: 16px;
}

.bonus-amount {
    color: var(--accent-color);
    font-weight: bold;
    font-size: 18px;
}

.bonus-details {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.bonus-detail-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.5;
}

.detail-icon {
    font-size: 18px;
    flex-shrink: 0;
    margin-top: 2px;
}

.casino-action {
    flex-shrink: 0;
    display: flex;
    align-items: center;
}

.casino-button {
    display: inline-block;
    padding: 15px 30px;
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #000;
    text-decoration: none;
    border-radius: 8px;
    text-align: center;
    font-weight: bold;
    font-size: 16px;
    transition: all 0.3s ease;
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.casino-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.5);
    background: linear-gradient(135deg, #ffed4e, #ffd700);
}

.casino-button.disabled {
    background: linear-gradient(135deg, #666, #888);
    color: #ccc;
    cursor: not-allowed;
    opacity: 0.6;
    box-shadow: none;
}

.casino-button.disabled:hover {
    transform: none;
    box-shadow: none;
    background: linear-gradient(135deg, #666, #888);
}

/* Content Sections */
.content-section {
    background-color: var(--dark-bg);
}

.content-box {
    background-color: var(--card-bg);
    border-radius: 15px;
    padding: 40px;
    margin-bottom: 30px;
    border: 1px solid var(--border-color);
}

.content-box h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.content-box p {
    color: var(--text-secondary);
    margin-bottom: 15px;
    line-height: 1.8;
}

.content-box ul {
    list-style: none;
    padding-left: 0;
}

.content-box ul li {
    color: var(--text-secondary);
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.content-box ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.step-list {
    counter-reset: step-counter;
    list-style: none;
}

.step-list li {
    counter-increment: step-counter;
    margin-bottom: 20px;
    padding-left: 50px;
    position: relative;
}

.step-list li::before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 0;
    width: 35px;
    height: 35px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--text-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

/* FAQ Section */
.faq-section {
    background-color: var(--light-bg);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: var(--card-bg);
    border-radius: 10px;
    margin-bottom: 15px;
    border: 1px solid var(--border-color);
    overflow: hidden;
}

.faq-question {
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
    font-weight: 600;
    color: var(--text-primary);
}

.faq-question:hover {
    background-color: var(--hover-bg);
}

.faq-question::after {
    content: '+';
    font-size: 24px;
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 20px;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 20px 20px 20px;
}

.faq-answer p {
    color: var(--text-secondary);
    line-height: 1.8;
}

/* FAQ hub: direct Q&A blocks (links outside .faq-answer accordion) */
.faq-section a {
    color: var(--primary-color);
    text-decoration: underline;
    text-underline-offset: 3px;
    font-weight: 600;
}

.faq-section a:visited {
    color: #ffa366;
}

.faq-section a:hover {
    color: var(--accent-color);
}

.faq-section a:focus-visible {
    outline: 2px solid var(--accent-color);
    outline-offset: 2px;
}

/* Footer Styles */
.main-footer {
    background-color: var(--darker-bg);
    border-top: 2px solid var(--border-color);
    padding: 40px 0 20px;
    margin-top: 60px;
}

.footer-content {
    text-align: center;
}

.footer-links ul {
    list-style: none;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 30px;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-color);
}

.footer-payment {
    margin: 30px 0;
}

.payment-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.payment-icon {
    width: 50px;
    height: 50px;
    object-fit: contain;
    display: inline-block;
    border-radius: 8px;
    background-color: var(--card-bg);
    padding: 5px;
    transition: transform 0.3s ease, opacity 0.3s ease;
    opacity: 0.8;
}

.payment-icon:hover {
    transform: scale(1.1);
    opacity: 1;
}

.footer-warning {
    background-color: var(--card-bg);
    padding: 20px;
    border-radius: 10px;
    margin: 30px 0;
    border-left: 4px solid var(--accent-color);
}

.footer-warning p {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.6;
}

.footer-copyright {
    margin: 20px 0;
    color: var(--text-muted);
    font-size: 14px;
}

.footer-apps {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.app-link {
    padding: 10px 20px;
    background-color: var(--card-bg);
    color: var(--text-primary);
    text-decoration: none;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    font-size: 14px;
}

.app-link:hover {
    background-color: var(--hover-bg);
    border-color: var(--primary-color);
}

/* Gallery Section */
.gallery-section {
    background-color: var(--dark-bg);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    border: 2px solid var(--border-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background-color: var(--card-bg);
    aspect-ratio: 16/9;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border-color: var(--primary-color);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* Reviews Cards Section */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.review-card {
    background-color: var(--card-bg);
    border-radius: 15px;
    padding: 25px;
    border: 2px solid var(--border-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    position: relative;
    overflow: hidden;
}

.review-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border-color: var(--primary-color);
}

.review-card:hover::before {
    opacity: 1;
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
    gap: 15px;
}

.review-author {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
    flex: 1;
}

.star-rating {
    display: flex;
    gap: 3px;
    flex-shrink: 0;
}

.star {
    font-size: 20px;
    color: var(--text-muted);
    line-height: 1;
}

.star.filled {
    color: var(--accent-color);
}

.review-text {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 15px;
    font-size: 15px;
}

.review-date {
    color: var(--text-muted);
    font-size: 13px;
    margin-top: auto;
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: var(--text-primary);
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease, background-color 0.3s ease;
    z-index: 999;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.scroll-to-top:active {
    transform: translateY(-2px);
}

.scroll-to-top span {
    line-height: 1;
    display: block;
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mt-20 {
    margin-top: 20px;
}

.mb-20 {
    margin-bottom: 20px;
}

/* 404 Error Page Styles */
.error-section {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 0;
}

.error-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.error-content h1 {
    font-size: 120px;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 20px;
    line-height: 1;
    text-shadow: 0 0 20px rgba(255, 107, 53, 0.5);
}

.error-content h2 {
    font-size: 36px;
    color: var(--text-primary);
    margin-bottom: 20px;
}

.error-content p {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 40px;
    line-height: 1.6;
}

.error-actions {
    margin-top: 30px;
}

.error-actions .cta-button {
    display: inline-block;
}

@media (max-width: 768px) {
    .error-content h1 {
        font-size: 80px;
    }
    
    .error-content h2 {
        font-size: 28px;
    }
    
    .error-content p {
        font-size: 16px;
    }
}

