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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background: #0d1f0d;
    min-height: 100vh;
}

/* Top Header Bar */
.site-top-header {
    background: #0a1a0a;
    padding: 12px 20px;
    padding-left: 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

.site-logo-container {
    display: flex;
    align-items: center;
    gap: 10px;
}

.site-logo-link {
    text-decoration: none;
    color: #ffd700;
    font-weight: 700;
    font-size: 24px;
    letter-spacing: 1px;
}

.site-logo-link img {
    max-height: 40px;
    width: auto;
}

.header-action-buttons {
    display: flex;
    gap: 20px;
    align-items: center;
}

.btn-header-primary {
    background: #ffd700;
    color: #0a1a0a;
    padding: 10px 20px;
    border: none;
    border-radius: 6px;
    text-decoration: none;
    display: inline-block;
    font-weight: 600;
    font-size: 14px;
    transition: background 0.2s, transform 0.3s ease;
}

.btn-header-primary:hover {
    background: #ffed4e;
}

.btn-header-secondary {
    background: #ff6b35;
    color: #ffffff;
    padding: 10px 20px;
    border: none;
    border-radius: 6px;
    text-decoration: none;
    display: inline-block;
    font-weight: 600;
    font-size: 14px;
    transition: background 0.2s, transform 0.3s ease;
}

.btn-header-secondary:hover {
    background: #ff8555;
}

/* Button Animation */
@keyframes buttonScale {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.15);
    }
    100% {
        transform: scale(1);
    }
}

.header-btn-animated {
    animation: buttonScale 1.2s ease-in-out infinite;
    will-change: transform;
}

.header-btn-animated[data-btn-index="0"] {
    animation-delay: 0s;
}

.header-btn-animated[data-btn-index="1"] {
    animation-delay: 0.6s;
}

/* Horizontal Navigation Menu */
.main-navigation-bar {
    background: #152515;
    padding: 0;
    padding-left: 25px;
    border-bottom: 1px solid rgba(255, 215, 0, 0.15);
}

.navigation-menu-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
}

.navigation-menu-item {
    margin: 0;
}

.navigation-menu-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 16px 24px;
    color: #ffffff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: background 0.2s;
    border-bottom: 3px solid transparent;
}

.navigation-menu-link:hover {
    background: rgba(255, 215, 0, 0.1);
}

.navigation-menu-link.active {
    background: rgba(255, 215, 0, 0.15);
    border-bottom-color: #ffd700;
    color: #ffd700;
}

.navigation-menu-emoji {
    font-size: 18px;
    line-height: 1;
}

/* Mobile Menu Toggle (Right Side) */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    position: fixed;
    top: 12px;
    right: 20px;
    z-index: 1002;
    flex-direction: column;
    gap: 5px;
}

.mobile-menu-toggle span {
    display: block;
    width: 28px;
    height: 3px;
    background: #ffd700;
    border-radius: 2px;
    transition: all 0.3s;
}

.mobile-menu-toggle.is-active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

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

.mobile-menu-toggle.is-active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

/* Mobile Navigation Panel */
.mobile-backdrop {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1000;
}

.mobile-navigation-panel {
    position: fixed;
    right: 0;
    top: 0;
    width: 280px;
    height: 100vh;
    background: #152515;
    z-index: 1001;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.5);
}

.mobile-navigation-panel.is-active {
    transform: translateX(0);
}

.mobile-panel-header {
    padding: 20px;
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.mobile-panel-logo {
    color: #ffd700;
    font-weight: 700;
    font-size: 22px;
}

.mobile-panel-close {
    background: none;
    border: none;
    color: #ffffff;
    font-size: 28px;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.mobile-panel-menu-item {
    margin: 0;
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

.mobile-panel-menu-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    transition: background 0.2s;
}

.mobile-panel-menu-link:hover,
.mobile-panel-menu-link.active {
    background: rgba(255, 215, 0, 0.15);
    color: #ffd700;
}

.mobile-panel-emoji {
    font-size: 20px;
    line-height: 1;
}

/* Main Content Wrapper */
.page-content-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 30px 20px;
    padding-left: 25px;
}

/* Promotional Banners */
.promotional-banners-section {
    margin-bottom: 40px;
}

.promo-banner-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #1a3a1a 0%, #0d1f0d 100%);
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.promo-banner-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.promo-banner-content {
    padding: 30px;
    position: relative;
}

.promo-banner-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #ffffff;
    line-height: 1.2;
}

.promo-banner-text {
    font-size: 18px;
    margin-bottom: 20px;
    color: #e0e0e0;
}

.promo-banner-btn {
    display: inline-block;
    padding: 14px 28px;
    background: #ffd700;
    color: #0a1a0a;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    transition: background 0.2s;
}

.promo-banner-btn:hover {
    background: #ffed4e;
}

/* Game Sections */
.game-section-container {
    margin-bottom: 50px;
}

.section-header-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.section-title-text {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 10px;
}

.section-title-emoji {
    font-size: 24px;
}

.show-all-link {
    padding: 8px 16px;
    background: #152515;
    color: #ffd700;
    text-decoration: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    border: 1px solid rgba(255, 215, 0, 0.3);
    transition: background 0.2s;
}

.show-all-link:hover {
    background: rgba(255, 215, 0, 0.1);
}

.games-grid-layout {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 20px;
}

.game-card-item {
    background: #152515;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(255, 215, 0, 0.15);
    transition: transform 0.2s, box-shadow 0.2s;
}

.game-card-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.2);
}

.game-image-container {
    position: relative;
    width: 100%;
    padding-top: 130%;
    overflow: hidden;
}

.game-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.game-play-button {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    padding: 10px 20px;
    background: #ffd700;
    color: #0a1a0a;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 14px;
    opacity: 0;
    transition: opacity 0.2s;
}

.game-card-item:hover .game-play-button {
    opacity: 1;
}

.game-title-text {
    padding: 12px;
    text-align: center;
    font-size: 14px;
    color: #ffffff;
    font-weight: 500;
}

/* Text Content */
.text-content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.text-content-wrapper h1 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 24px;
    color: #ffffff;
}

.text-content-wrapper h2 {
    font-size: 26px;
    font-weight: 700;
    margin: 36px 0 18px 0;
    color: #ffffff;
}

.text-content-wrapper h3 {
    font-size: 22px;
    font-weight: 600;
    margin: 28px 0 14px 0;
    color: #ffffff;
}

.text-content-wrapper p {
    margin-bottom: 18px;
    color: #e0e0e0;
    line-height: 1.7;
}

.text-content-wrapper img {
    max-width: 100%;
    height: auto;
    margin: 24px 0;
    border-radius: 8px;
}

/* Tables with Horizontal Scroll on Mobile */
.table-wrapper-container {
    margin: 24px 0;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.table-wrapper-container table {
    width: 100%;
    min-width: 600px;
    border-collapse: collapse;
    margin: 0;
    background: #152515;
    border-radius: 8px;
    overflow: hidden;
}

.table-wrapper-container th,
.table-wrapper-container td {
    padding: 14px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    text-align: left;
    color: #e0e0e0;
}

.table-wrapper-container th {
    background: #1a3a1a;
    font-weight: 600;
    color: #ffd700;
}

.table-wrapper-container tr:nth-child(even) {
    background: rgba(255, 215, 0, 0.05);
}

.text-content-wrapper ul,
.text-content-wrapper ol {
    margin: 24px 0;
    padding-left: 30px;
    color: #e0e0e0;
}

.text-content-wrapper ul li,
.text-content-wrapper ol li {
    margin-bottom: 10px;
    line-height: 1.7;
}

.text-content-wrapper a {
    color: #ffd700;
    text-decoration: underline;
}

.text-content-wrapper a:hover {
    color: #ffed4e;
}

.text-content-wrapper blockquote {
    margin: 24px 0;
    padding: 20px;
    border-left: 4px solid #ffd700;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 4px;
    color: #e0e0e0;
}

/* FAQ */
.faq-wrapper-container {
    margin: 24px 0;
}

.faq-item-block {
    border: 1px solid rgba(255, 215, 0, 0.2);
    margin-bottom: 12px;
    background: #152515;
    border-radius: 8px;
    overflow: hidden;
}

.faq-question-block {
    padding: 18px;
    background: rgba(255, 215, 0, 0.1);
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
}

.faq-question-block strong {
    font-size: 17px;
    color: #ffd700;
}

.faq-answer-block {
    padding: 18px;
    color: #e0e0e0;
}

/* HowTo */
.howto-wrapper-container {
    margin: 24px 0;
    padding: 24px;
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 8px;
}

.howto-steps-list {
    list-style: none;
    padding: 0;
    counter-reset: step-counter;
}

.howto-step-item {
    counter-increment: step-counter;
    padding: 18px;
    margin-bottom: 12px;
    background: #152515;
    border-left: 4px solid #ffd700;
    border-radius: 4px;
}

.howto-step-item::before {
    content: counter(step-counter) ".";
    font-weight: 700;
    margin-right: 12px;
    color: #ffd700;
}

.howto-step-item strong {
    display: block;
    font-size: 17px;
    margin-bottom: 10px;
    color: #ffd700;
}

/* Breadcrumbs */
.breadcrumb-nav-container {
    margin: 12px 0 24px 0;
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.breadcrumb-link-item {
    color: #ffd700;
    text-decoration: none;
}

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

.breadcrumb-divider {
    color: #888;
}

/* Payment Methods */
.payment-methods-section {
    margin: 40px 0;
}

.payment-methods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 16px;
    margin-top: 20px;
}

.payment-method-card {
    border: 1px solid rgba(255, 215, 0, 0.2);
    padding: 12px;
    text-align: center;
    background: #152515;
    border-radius: 8px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 90px;
}

.payment-method-card:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 215, 0, 0.5);
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.15);
    background: #1a2f1a;
}

.payment-method-image-wrapper {
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    width: 100%;
}

.payment-method-image {
    max-width: 60px;
    max-height: 40px;
    width: auto;
    height: auto;
    display: block;
    margin: 0 auto;
    object-fit: contain;
    filter: brightness(1.05);
    transition: all 0.3s ease;
}

.payment-method-card:hover .payment-method-image {
    filter: brightness(1.15);
    transform: scale(1.05);
}

.payment-method-name {
    font-size: 11px;
    font-weight: 600;
    color: #ffffff;
    margin-top: auto;
}

/* Footer */
.site-footer {
    background: #0a1a0a;
    color: #ffffff;
    padding: 40px 20px 24px;
    margin-top: 60px;
    border-top: 1px solid rgba(255, 215, 0, 0.2);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    margin-bottom: 30px;
}

.footer-section-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #ffd700;
}

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

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-links a:hover,
.footer-links a.active {
    color: #ffd700;
}

.footer-bottom {
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 215, 0, 0.2);
    font-size: 13px;
    color: #999;
}

.footer-safe {
    margin-bottom: 20px;
}

.footer-safe-links {
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
    padding: 0;
    margin: 0;
}

.footer-safe-links li {
    margin: 0;
}

.safe-image {
    max-width: 100px;
    height: auto;
    display: block;
}

/* List Container */
.list-container {
    margin: 24px 0;
}

.list-container ul,
.list-container ol {
    margin: 24px 0;
    padding-left: 30px;
    color: #e0e0e0;
}

.list-container ul li,
.list-container ol li {
    margin-bottom: 10px;
    line-height: 1.7;
}

/* App Info Table */
.app-info-table-wrapper {
    margin: 24px 0;
}

.app-info-table-container {
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 8px;
    overflow: hidden;
}

.app-info-table {
    width: 100%;
    border-collapse: collapse;
    background: #152515;
}

.app-info-row {
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
}

.app-info-row:last-child {
    border-bottom: none;
}

.app-info-label-cell {
    padding: 14px;
    text-align: center;
    background: #1a3a1a;
    color: #ffd700;
    font-weight: 600;
}

.app-info-label-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
}

.app-info-emoji {
    font-size: 24px;
    line-height: 1;
    display: inline-block;
}

.app-info-value-cell {
    padding: 14px;
    color: #e0e0e0;
}

.app-name-with-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.app-name-logo {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.app-name-text {
    font-weight: 600;
    color: #ffffff;
}

.app-download-link {
    display: inline-block;
    padding: 10px 20px;
    background: #ffd700;
    color: #0a1a0a;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background 0.2s;
}

.app-download-link:hover {
    background: #ffed4e;
}

/* Mobile Styles */
@media (max-width: 992px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .main-navigation-bar {
        display: none;
    }

    .page-content-container {
        padding: 20px 15px;
        padding-left: 22px;
    }

    .promo-banner-title {
        font-size: 24px;
    }

    .promo-banner-text {
        font-size: 16px;
    }

    .games-grid-layout {
        grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
        gap: 15px;
    }

    .payment-methods-grid {
        grid-template-columns: repeat(auto-fill, minmax(90px, 1fr));
        gap: 12px;
    }
    
    .payment-method-card {
        padding: 10px;
        min-height: 80px;
    }
    
    .payment-method-image-wrapper {
        height: 35px;
    }
    
    .payment-method-image {
        max-width: 50px;
        max-height: 35px;
    }
    
    .payment-method-name {
        font-size: 10px;
    }
}

@media (max-width: 768px) {
    .site-top-header {
        padding: 15px 15px;
        padding-left: 20px;
        padding-right: 70px;
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .site-logo-container {
        width: 100%;
        justify-content: center;
    }

    .site-logo-link {
        font-size: 20px;
    }

    .header-action-buttons {
        width: 100%;
        justify-content: center;
        gap: 20px;
    }

    .btn-header-primary,
    .btn-header-secondary {
        padding: 10px 18px;
        font-size: 13px;
        flex: 1;
        max-width: 160px;
        text-align: center;
    }

    .page-content-container {
        padding: 15px 10px;
        padding-left: 20px;
    }

    .text-content-wrapper {
        padding: 15px;
    }

    .text-content-wrapper h1 {
        font-size: 26px;
    }

    .text-content-wrapper h2 {
        font-size: 22px;
    }

    .text-content-wrapper h3 {
        font-size: 20px;
    }

    .promo-banner-content {
        padding: 20px;
    }

    .promo-banner-title {
        font-size: 20px;
    }

    .promo-banner-text {
        font-size: 14px;
    }

    .games-grid-layout {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .section-title-text {
        font-size: 20px;
    }

    .table-wrapper-container {
        margin-left: -10px;
        margin-right: -10px;
        padding: 0 10px;
    }
}

/* Bonuses Section */
.bonuses-section-container {
    margin-bottom: 50px;
}

.bonuses-grid-layout {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.bonus-card-item {
    background: #152515;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255, 215, 0, 0.2);
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
}

.bonus-card-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(255, 215, 0, 0.25);
    border-color: rgba(255, 215, 0, 0.4);
}

.bonus-image-container {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: #0a1a0a;
}

.bonus-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.bonus-content-wrapper {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
}

.bonus-category-badge {
    display: inline-block;
    padding: 6px 12px;
    background: rgba(255, 215, 0, 0.15);
    color: #ffd700;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    width: fit-content;
}

.bonus-name-text {
    font-size: 22px;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    line-height: 1.3;
}

.bonus-value-text {
    font-size: 20px;
    font-weight: 700;
    color: #ffd700;
    margin: 4px 0;
}

.bonus-description-text {
    font-size: 14px;
    line-height: 1.6;
    color: #e0e0e0;
    margin: 0;
    flex: 1;
}

.bonus-terms-text {
    font-size: 12px;
    line-height: 1.5;
    color: #b0b0b0;
    margin-top: 8px;
    padding-top: 12px;
    border-top: 1px solid rgba(255, 215, 0, 0.15);
}

.bonus-terms-text strong {
    color: #ffd700;
    font-weight: 600;
}

@media (max-width: 768px) {
    .bonuses-grid-layout {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .bonus-image-container {
        height: 180px;
    }

    .bonus-content-wrapper {
        padding: 20px;
    }

    .bonus-name-text {
        font-size: 20px;
    }

    .bonus-value-text {
        font-size: 18px;
    }
}

/* ============================================
   CONTACT PAGE - BRIGHT & COLORFUL DESIGN
   ============================================ */

.contact-page {
    background: linear-gradient(135deg, #0d1f0d 0%, #1a3a1a 50%, #0d1f0d 100%);
}

.contact-page-wrapper {
    background: linear-gradient(180deg, rgba(255, 215, 0, 0.05) 0%, transparent 100%);
    padding: 20px 0;
}

.contact-page .text-content-wrapper {
    background: transparent;
    border: none;
    padding: 30px 25px;
}

.contact-page .text-content-wrapper h1 {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 50%, #ff6b35 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 42px;
    text-align: center;
    margin-bottom: 30px;
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.3);
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from {
        filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.5));
    }
    to {
        filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.8));
    }
}

.contact-page .text-content-wrapper h2 {
    color: #ffd700;
    font-size: 32px;
    margin: 40px 0 25px 0;
    text-align: center;
    text-shadow: 0 2px 10px rgba(255, 215, 0, 0.3);
}

.contact-page .text-content-wrapper p {
    font-size: 18px;
    line-height: 1.8;
    color: #e8e8e8;
}

/* Contact Cards */
.contact-cards-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin: 40px 0;
    padding: 20px 0;
}

.contact-card {
    background: linear-gradient(135deg, #1a3a1a 0%, #0d1f0d 100%);
    border-radius: 20px;
    padding: 35px;
    border: 2px solid;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.contact-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s;
}

.contact-card:hover::before {
    opacity: 1;
}

.contact-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 60px rgba(255, 215, 0, 0.4);
}

.contact-card-email {
    border-color: #4a90e2;
    background: linear-gradient(135deg, #1a3a1a 0%, #0d1f0d 50%, #1a3a1a 100%);
}

.contact-card-email:hover {
    border-color: #6ba3f5;
    box-shadow: 0 20px 60px rgba(74, 144, 226, 0.5);
}

.contact-card-chat {
    border-color: #ff6b35;
    background: linear-gradient(135deg, #1a3a1a 0%, #0d1f0d 50%, #1a3a1a 100%);
}

.contact-card-chat:hover {
    border-color: #ff8555;
    box-shadow: 0 20px 60px rgba(255, 107, 53, 0.5);
}

.contact-card-icon {
    font-size: 64px;
    text-align: center;
    margin-bottom: 20px;
    filter: drop-shadow(0 4px 10px rgba(255, 215, 0, 0.3));
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

.contact-card-content {
    text-align: center;
}

.contact-card-title {
    font-size: 28px;
    font-weight: 700;
    margin: 0 0 10px 0;
    color: #ffffff;
}

.contact-card-email .contact-card-title {
    color: #4a90e2;
}

.contact-card-chat .contact-card-title {
    color: #ff6b35;
}

.contact-card-subtitle {
    font-size: 16px;
    color: #ffd700;
    margin: 0 0 15px 0;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-card-description {
    font-size: 16px;
    line-height: 1.7;
    color: #d0d0d0;
    margin: 0 0 20px 0;
}

.contact-card-contact {
    margin: 25px 0 15px 0;
    padding: 15px;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 10px;
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.contact-card-link {
    font-size: 20px;
    font-weight: 700;
    color: #ffd700;
    text-decoration: none;
    transition: all 0.3s;
    display: inline-block;
}

.contact-card-link:hover {
    color: #ffed4e;
    transform: scale(1.1);
    text-shadow: 0 0 15px rgba(255, 215, 0, 0.8);
}

.contact-card-text {
    font-size: 18px;
    font-weight: 600;
    color: #ffd700;
}

.contact-card-time {
    font-size: 14px;
    color: #b0b0b0;
    margin-top: 10px;
    font-style: italic;
}

/* Info Box */
.info-box {
    border-radius: 15px;
    padding: 30px;
    margin: 30px 0;
    border: 2px solid;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.info-box-highlight {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.15) 0%, rgba(255, 107, 53, 0.1) 100%);
    border-color: #ffd700;
    border-width: 3px;
}

.info-box-highlight p {
    font-size: 18px;
    line-height: 1.8;
    color: #ffffff;
    margin: 0;
    text-align: center;
}

/* Contact Reasons Grid */
.contact-reasons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin: 40px 0;
    padding: 20px 0;
}

.contact-reason-card {
    background: linear-gradient(135deg, #152515 0%, #1a3a1a 100%);
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    border: 2px solid rgba(255, 215, 0, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.contact-reason-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.1), transparent);
    transition: left 0.5s;
}

.contact-reason-card:hover::before {
    left: 100%;
}

.contact-reason-card:hover {
    transform: translateY(-8px);
    border-color: #ffd700;
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.3);
    background: linear-gradient(135deg, #1a3a1a 0%, #152515 100%);
}

.contact-reason-icon {
    font-size: 48px;
    margin-bottom: 15px;
    filter: drop-shadow(0 4px 8px rgba(255, 215, 0, 0.4));
    display: block;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

.contact-reason-title {
    font-size: 20px;
    font-weight: 700;
    color: #ffd700;
    margin: 0 0 10px 0;
    text-shadow: 0 2px 8px rgba(255, 215, 0, 0.3);
}

.contact-reason-text {
    font-size: 15px;
    line-height: 1.6;
    color: #d0d0d0;
    margin: 0;
}

/* Responsive Design for Contact Page */
@media (max-width: 768px) {
    .contact-page .text-content-wrapper h1 {
        font-size: 32px;
    }

    .contact-page .text-content-wrapper h2 {
        font-size: 26px;
    }

    .contact-cards-container {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 10px 0;
    }

    .contact-card {
        padding: 25px;
    }

    .contact-card-icon {
        font-size: 48px;
    }

    .contact-card-title {
        font-size: 24px;
    }

    .contact-reasons-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .contact-reason-card {
        padding: 20px;
    }

    .contact-reason-icon {
        font-size: 36px;
    }

    .contact-reason-title {
        font-size: 18px;
    }

    .info-box {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .contact-reasons-grid {
        grid-template-columns: 1fr;
    }
}
