/* Custom Footer Styles */
.custom-footer {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 60px 0 20px;
    position: relative;
}

.custom-footer .container {
    position: relative;
    z-index: 2;
}

/* Widget Titles */
.custom-footer .widget-title {
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Site Logo */
.custom-footer .site-logo {
    margin-bottom: 30px;
}

.custom-footer .site-logo img {
    max-width: 200px;
    height: auto;
}

/* Contact Information */
.custom-footer .contact-row {
    margin-bottom: 15px;
}

.custom-footer .contact-row .value {
    color: #cccccc;
    font-size: 14px;
    line-height: 1.6;
}

/* Footer Links */
.custom-footer .footer-links-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.custom-footer .footer-links-list li {
    margin-bottom: 10px;
}

.custom-footer .footer-links-list a {
    color: #cccccc;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.custom-footer .footer-links-list a:hover {
    color: #ff6b6b;
}

/* Coupon Form */
.custom-footer .custom-coupon-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 15px;
}

.custom-footer .custom-coupon-form input[type="text"] {
    padding: 12px 15px;
    border: 1px solid #333;
    background-color: #2a2a2a;
    color: #ffffff;
    border-radius: 5px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.custom-footer .custom-coupon-form input[type="text"]:focus {
    outline: none;
    border-color: #ff6b6b;
    background-color: #333;
}

.custom-footer .custom-coupon-form input[type="text"]::placeholder {
    color: #888;
}

.custom-footer .custom-coupon-form button {
    padding: 12px 20px;
    background: linear-gradient(135deg, #ff6b6b, #ff8b8b);
    color: #ffffff;
    border: none;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.custom-footer .custom-coupon-form button:hover {
    background: linear-gradient(135deg, #ff5555, #ff7777);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 107, 0.3);
}

/* Coupon Message */
.custom-footer .coupon-message {
    margin-top: 10px;
    font-size: 13px;
    padding: 8px;
    border-radius: 4px;
    display: none;
}

.custom-footer .coupon-message.success {
    background-color: #28a745;
    color: #ffffff;
    display: block;
}

.custom-footer .coupon-message.error {
    background-color: #dc3545;
    color: #ffffff;
    display: block;
}

/* Payment Methods Image */
.custom-footer .footer-payments {
    margin-top: 20px;
    max-width: 100%;
    height: auto;
}

/* Footer Bottom */
.custom-footer .footer-bottom {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #333;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.custom-footer .footer-bottom .left-text {
    color: #888;
    font-size: 13px;
}

.custom-footer .footer-bottom .left-text a {
    color: #cccccc;
    text-decoration: none;
    margin: 0 10px;
    transition: color 0.3s ease;
}

.custom-footer .footer-bottom .left-text a:hover {
    color: #ff6b6b;
}

.custom-footer .footer-bottom .right-text {
    color: #888;
    font-size: 13px;
}

/* Scroll to Top Button */
.custom-footer .scroll-to-top-button {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(135deg, #ff6b6b, #ff8b8b);
    color: #ffffff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 999;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    opacity: 0;
    visibility: hidden;
}

.custom-footer .scroll-to-top-button.show {
    opacity: 1;
    visibility: visible;
}

.custom-footer .scroll-to-top-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(255, 107, 107, 0.4);
}

.custom-footer .scroll-to-top-button span {
    display: none;
}

.custom-footer .scroll-to-top-button i {
    transform: rotate(-90deg);
    font-size: 20px;
}

/* Responsive Design */
@media (max-width: 767px) {
    .custom-footer {
        padding: 40px 0 20px;
    }
    
    .custom-footer .row > div {
        margin-bottom: 30px;
    }
    
    .custom-footer .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .custom-footer .footer-bottom .left-text,
    .custom-footer .footer-bottom .right-text {
        margin-bottom: 10px;
    }
    
    .custom-footer .scroll-to-top-button {
        right: 20px;
        bottom: 20px;
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 480px) {
    .custom-footer .widget-title {
        font-size: 14px;
    }
    
    .custom-footer .custom-coupon-form {
        gap: 8px;
    }
    
    .custom-footer .custom-coupon-form input[type="text"],
    .custom-footer .custom-coupon-form button {
        padding: 10px;
        font-size: 13px;
    }
}

/* Social Media Links */
.custom-footer .footer-social-links {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.custom-footer .footer-social-links .social-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #cccccc;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
}

.custom-footer .footer-social-links .social-link i {
    font-size: 20px;
}

.custom-footer .footer-social-links .social-link span {
    font-size: 14px;
}

.custom-footer .footer-social-links .social-link:hover {
    color: #ff6b6b;
    transform: translateY(-2px);
}

.custom-footer .footer-social-links .social-link.instagram:hover i {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.custom-footer .footer-social-links .social-link.telegram:hover i {
    color: #0088cc;
}

/* Dark mode support */
.dark-mode .custom-footer {
    background-color: #0a0a0a;
}

.dark-mode .custom-footer .custom-coupon-form input[type="text"] {
    background-color: #1a1a1a;
    border-color: #2a2a2a;
}

.dark-mode .custom-footer .footer-bottom {
    border-top-color: #2a2a2a;
}

/* Contact Page Styles */
.contact-page-wrapper {
    padding: 60px 0;
    background: linear-gradient(135deg, #000000 0%, #141414 100%);
}

/* Hero Section */
.contact-hero {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-bottom: 60px;
    padding: 40px 0;
}

.contact-hero .hero-content {
    flex: 1;
}

.contact-hero .page-title {
    font-size: 48px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.2;
}

.contact-hero .hero-description {
    font-size: 18px;
    color: #b4bac2;
    line-height: 1.6;
}

.contact-hero .hero-image {
    flex: 0 0 400px;
}

.contact-hero .hero-image img {
    width: 100%;
    height: auto;
}

.contact-hero .image-placeholder {
    width: 100%;
    height: 300px;
    background: #1a1a1a;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    font-size: 14px;
    border: 1px solid #323232;
}

/* Contact Information Section */
.contact-info-section {
    margin-bottom: 60px;
}

.contact-box {
    background: #1a1a1a;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 30px;
    border: 1px solid #323232;
}

.contact-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7);
    border-color: #0750d0;
}

.contact-box .icon {
    font-size: 36px;
    margin-bottom: 20px;
}

.contact-box h3 {
    font-size: 22px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 15px;
}

.contact-box p {
    color: #b4bac2;
    line-height: 1.6;
    margin-bottom: 15px;
}

.contact-box .contact-detail {
    background: #272727;
    padding: 15px;
    border-radius: 5px;
    margin-top: 15px;
    border: 1px solid #323232;
}

.contact-box .contact-detail a {
    color: #0750d0;
    text-decoration: none;
    font-weight: 500;
}

.contact-box .contact-detail a:hover {
    text-decoration: underline;
    color: #ff6b6b;
}

.contact-box .note {
    font-size: 13px;
    color: #888;
    margin-top: 10px;
    font-style: italic;
}

/* Contact Form and Map Section */
.contact-form-map-section {
    margin-top: 40px;
}

.contact-form-wrapper,
.map-wrapper {
    background: #1a1a1a;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
    border: 1px solid #323232;
}

.contact-form-wrapper h2,
.map-wrapper h2 {
    font-size: 28px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 30px;
}

/* Contact Form */
.contact-form .form-group {
    margin-bottom: 25px;
}

.contact-form label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: #b4bac2;
    margin-bottom: 8px;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #323232;
    border-radius: 5px;
    font-size: 14px;
    transition: all 0.3s ease;
    background: #272727;
    color: #ffffff;
}

.contact-form input[type="text"]:focus,
.contact-form input[type="email"]:focus,
.contact-form input[type="tel"]:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #0750d0;
    background: #323232;
}

.contact-form textarea {
    resize: vertical;
}

/* Checkbox Styling */
.contact-form .checkbox-group {
    display: flex;
    align-items: flex-start;
}

.contact-form .checkbox-label {
    display: flex;
    align-items: flex-start;
    cursor: pointer;
    font-size: 14px;
    color: #b4bac2;
}

.contact-form .checkbox-label input[type="checkbox"] {
    width: auto;
    margin-right: 10px;
    margin-top: 3px;
}

.contact-form .checkbox-label a {
    color: #0750d0;
    text-decoration: none;
}

.contact-form .checkbox-label a:hover {
    text-decoration: underline;
    color: #ff6b6b;
}

/* Submit Button */
.contact-form .btn-submit {
    background: linear-gradient(135deg, #0750d0, #0969ff);
    color: #ffffff;
    padding: 14px 40px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-form .btn-submit:hover {
    background: linear-gradient(135deg, #0969ff, #0b7eff);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(7, 80, 208, 0.3);
}

.contact-form .btn-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Form Messages */
.contact-form .form-message {
    margin-top: 20px;
}

.contact-form .alert {
    padding: 12px 15px;
    border-radius: 5px;
    margin-top: 15px;
    font-size: 14px;
}

.contact-form .alert.success {
    background: rgba(40, 167, 69, 0.2);
    color: #28a745;
    border: 1px solid #28a745;
}

.contact-form .alert.error {
    background: rgba(220, 53, 69, 0.2);
    color: #dc3545;
    border: 1px solid #dc3545;
}

/* Map Container */
.map-container {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    border: 1px solid #323232;
}

.map-container iframe {
    width: 100%;
    height: 450px;
    filter: brightness(0.8);
}

/* Responsive Design */
@media (max-width: 991px) {
    .contact-hero {
        flex-direction: column;
        text-align: center;
    }
    
    .contact-hero .hero-image {
        flex: 0 0 auto;
        width: 100%;
        max-width: 400px;
    }
}

@media (max-width: 767px) {
    .contact-page-wrapper {
        padding: 40px 0;
    }
    
    .contact-hero .page-title {
        font-size: 36px;
    }
    
    .contact-hero .hero-description {
        font-size: 16px;
    }
    
    .contact-form-wrapper,
    .map-wrapper {
        padding: 30px 20px;
        margin-bottom: 30px;
    }
    
    .map-container iframe {
        height: 350px;
    }
}

@media (max-width: 480px) {
    .contact-hero .page-title {
        font-size: 28px;
    }
    
    .contact-box {
        padding: 20px;
    }
    
    .contact-form .btn-submit {
        width: 100%;
    }
}

/* Homepage Styles */
.homepage-wrapper {
    background: #000000;
}

/* Hero Slider Section */
.hero-slider-section {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.hero-slider-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slides {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

.slide-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transform: scale(1.1);
    transition: transform 10s ease-out;
}

.hero-slide.active .slide-background {
    transform: scale(1);
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.7) 100%);
}

.slide-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    z-index: 2;
}

.slide-inner {
    text-align: left;
    max-width: 800px;
    padding: 20px;
    margin-left: 80px;
}

.slide-badge {
    display: inline-block;
    background: linear-gradient(135deg, #ff6b6b, #ff8b8b);
    color: #ffffff;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    animation: pulse 2s infinite;
}

.slide-title {
    font-size: 64px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.5);
    line-height: 1.1;
}

.slide-excerpt {
    font-size: 20px;
    color: #e0e0e0;
    margin-bottom: 30px;
    line-height: 1.6;
}

.slide-price {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 40px;
    color: #0969ff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.slide-price del {
    color: #888;
    font-size: 32px;
    margin-right: 15px;
}

.slide-price ins {
    text-decoration: none;
    color: #ff6b6b;
}

.slide-buttons {
    display: flex;
    gap: 20px;
    justify-content: flex-start;
}

/* Slider Dots */
.slider-dots {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 3;
}

.slider-dots .dot {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dots .dot.active {
    background: #0969ff;
    width: 30px;
    border-radius: 6px;
}

.slider-dots .dot:hover {
    background: rgba(255, 255, 255, 0.6);
}

.btn-primary, .btn-secondary {
    padding: 15px 35px;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary {
    background: linear-gradient(135deg, #0750d0, #0969ff);
    color: #ffffff;
    box-shadow: 0 5px 15px rgba(7, 80, 208, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(7, 80, 208, 0.4);
}

.btn-secondary {
    background: transparent;
    color: #ffffff;
    border: 2px solid #0969ff;
}

.btn-secondary:hover {
    background: rgba(9, 105, 255, 0.1);
    transform: translateY(-2px);
}

/* Popular Games Section */
.popular-games-section,
.new-releases-section,
.on-sale-section {
    padding: 80px 0;
    background: #0a0a0a;
}

.new-releases-section {
    background: #141414;
}

.on-sale-section {
    background: #0a0a0a;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-title {
    font-size: 42px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 18px;
    color: #b4bac2;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.game-card {
    background: #1a1a1a;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid #323232;
}

.game-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(7, 80, 208, 0.3);
    border-color: #0750d0;
}

.game-card a {
    text-decoration: none;
    color: inherit;
}

.game-image {
    position: relative;
    padding-top: 133%;
    overflow: hidden;
}

.game-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.game-card:hover .game-image img {
    transform: scale(1.1);
}

.game-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #ff6b6b;
    color: #ffffff;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    z-index: 2;
}

.game-badge.new {
    background: linear-gradient(135deg, #28a745, #20c997);
}

.game-badge.sale {
    background: linear-gradient(135deg, #ff6b6b, #ff8b8b);
}

.game-badge.hot-deal {
    background: linear-gradient(135deg, #ff4444, #ff6666);
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.game-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    gap: 10px;
}

.game-card:hover .game-overlay {
    opacity: 1;
}

.btn-view-details,
.btn-quick-buy {
    padding: 12px 30px;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    width: 80%;
    max-width: 200px;
}

.btn-view-details {
    background: linear-gradient(135deg, #28a745, #20c997);
    color: #ffffff;
    border: none;
}

.btn-view-details:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(40, 167, 69, 0.4);
    background: linear-gradient(135deg, #20c997, #28a745);
}

.btn-quick-buy {
    background: linear-gradient(135deg, #0750d0, #0969ff);
    color: #ffffff;
    border: none;
}

.btn-quick-buy:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(7, 80, 208, 0.4);
}

.game-info {
    padding: 20px;
}

.game-info a {
    text-decoration: none;
    color: inherit;
}

.game-info a:hover .game-title {
    color: #0969ff;
}

.game-title {
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.game-price {
    font-size: 24px;
    font-weight: 700;
    color: #0969ff;
}

.game-price .regular-price {
    text-decoration: line-through;
    color: #666;
    font-size: 18px;
    font-weight: 400;
    margin-right: 10px;
}

.game-price del {
    color: #666;
    font-size: 18px;
    font-weight: 400;
    margin-right: 10px;
}

.game-price ins {
    text-decoration: none;
    color: #ff6b6b;
}

/* No Image Placeholder */
.no-image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #323232, #1a1a1a);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    font-size: 14px;
    position: absolute;
    top: 0;
    left: 0;
}

.section-footer {
    text-align: center;
}

.btn-view-all {
    display: inline-block;
    padding: 12px 30px;
    background: transparent;
    color: #0969ff;
    border: 2px solid #0969ff;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-view-all:hover {
    background: rgba(9, 105, 255, 0.1);
    transform: translateX(5px);
}

/* Categories Section */
.categories-section {
    padding: 80px 0;
    background: #141414;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.category-card {
    position: relative;
    background: #1a1a1a;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid #323232;
}

.category-card a {
    display: block;
    padding: 40px 20px;
    text-align: center;
    text-decoration: none;
    color: inherit;
    position: relative;
    z-index: 2;
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
}

.category-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.category-card.steam .category-icon { color: #00adee; }
.category-card.playstation .category-icon { color: #003791; }
.category-card.xbox .category-icon { color: #107c10; }
.category-card.nintendo .category-icon { color: #e60012; }

.category-name {
    font-size: 24px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 10px;
}

.category-count {
    font-size: 14px;
    color: #b4bac2;
}

.category-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.category-card:hover .category-bg {
    opacity: 0.1;
}

.category-card.steam:hover .category-bg { background: #00adee; }
.category-card.playstation:hover .category-bg { background: #003791; }
.category-card.xbox:hover .category-bg { background: #107c10; }
.category-card.nintendo:hover .category-bg { background: #e60012; }

/* Offers Banner */
.offers-banner {
    padding: 60px 0;
    background: linear-gradient(135deg, #ff6b6b, #ff8b8b);
}

.banner-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
}

.banner-text h2 {
    font-size: 36px;
    color: #ffffff;
    margin-bottom: 10px;
}

.banner-text p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
}

.banner-timer {
    display: flex;
    gap: 20px;
}

.timer-item {
    text-align: center;
    background: rgba(255, 255, 255, 0.2);
    padding: 15px 20px;
    border-radius: 10px;
}

.timer-value {
    display: block;
    font-size: 32px;
    font-weight: 700;
    color: #ffffff;
}

.timer-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
}

.btn-shop-now {
    padding: 15px 40px;
    background: #ffffff;
    color: #ff6b6b;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-shop-now:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

/* About Section */
.about-section {
    padding: 80px 0;
    background: #0a0a0a;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.feature-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.feature-icon {
    font-size: 36px;
    line-height: 1;
}

.feature-content h4 {
    font-size: 20px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 10px;
}

.feature-content p {
    color: #b4bac2;
    line-height: 1.6;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.stat-card {
    background: #1a1a1a;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    border: 1px solid #323232;
}

.stat-number {
    font-size: 36px;
    font-weight: 700;
    color: #0969ff;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 14px;
    color: #b4bac2;
}

/* Newsletter Section */
.newsletter-section {
    padding: 60px 0;
    background: #141414;
}

.newsletter-box {
    background: linear-gradient(135deg, #1a1a1a, #272727);
    padding: 50px;
    border-radius: 10px;
    text-align: center;
    border: 1px solid #323232;
}

.newsletter-content h2 {
    font-size: 36px;
    color: #ffffff;
    margin-bottom: 15px;
}

.newsletter-content p {
    font-size: 18px;
    color: #b4bac2;
    margin-bottom: 30px;
}

.newsletter-form {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
    gap: 10px;
}

.newsletter-form input {
    flex: 1;
    padding: 15px;
    background: #0a0a0a;
    border: 1px solid #323232;
    border-radius: 5px;
    color: #ffffff;
    font-size: 16px;
}

.newsletter-form button {
    padding: 15px 30px;
    background: linear-gradient(135deg, #0750d0, #0969ff);
    color: #ffffff;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(7, 80, 208, 0.3);
}

/* Final CTA */
.final-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #000000, #0750d0);
    text-align: center;
}

.final-cta h2 {
    font-size: 48px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
}

.final-cta p {
    font-size: 20px;
    color: #b4bac2;
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.btn-primary-large, .btn-secondary-large {
    padding: 18px 45px;
    border-radius: 5px;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-primary-large {
    background: #ffffff;
    color: #0750d0;
}

.btn-primary-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
}

.btn-secondary-large {
    background: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.btn-secondary-large:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Featured Products Section */
.featured-products-section {
    padding: 80px 0;
    background: #0a0a0a;
}

/* Responsive Design */
@media (max-width: 991px) {
    .games-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    /* Hero Slider Mobile */
    .slide-title {
        font-size: 36px;
    }
    
    .slide-excerpt {
        font-size: 16px;
    }
    
    .slide-price {
        font-size: 28px;
    }
    
    .slide-buttons {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .slide-inner {
        margin-left: 40px;
    }
    
    .games-grid {
        grid-template-columns: 1fr;
    }
    
    .categories-grid {
        grid-template-columns: 1fr;
    }
    
    .banner-content {
        flex-direction: column;
        text-align: center;
    }
    
    .about-features {
        grid-template-columns: 1fr;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .slide-title {
        font-size: 28px;
    }
    
    .slide-price {
        font-size: 24px;
    }
    
    .slide-inner {
        margin-left: 20px;
    }
    
    .btn-primary,
    .btn-secondary {
        padding: 12px 25px;
        font-size: 14px;
    }
}

/* About Us Page Styles */
.about-page-wrapper {
    background: #000000;
}

/* About Hero Section */
.about-hero {
    position: relative;
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #0750d0 0%, #141414 100%);
    text-align: center;
}

.about-hero .hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('/wp-content/uploads/2025/12/about-hero-bg.jpg') center/cover;
    opacity: 0.1;
}

.about-hero .hero-content {
    position: relative;
    z-index: 2;
}

.about-hero .page-title {
    font-size: 56px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
}

.about-hero .page-subtitle {
    font-size: 24px;
    color: #b4bac2;
}

/* Story Section */
.about-story {
    padding: 80px 0;
    background: #0a0a0a;
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.story-content h2 {
    font-size: 42px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 30px;
}

.story-content p {
    font-size: 18px;
    color: #b4bac2;
    line-height: 1.8;
    margin-bottom: 20px;
}

.story-image .image-wrapper {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.story-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Mission & Vision */
.mission-vision {
    padding: 80px 0;
    background: #141414;
}

.mv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.mission-card,
.vision-card {
    background: #1a1a1a;
    padding: 40px;
    border-radius: 10px;
    border: 1px solid #323232;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mission-card:hover,
.vision-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(7, 80, 208, 0.2);
    border-color: #0750d0;
}

.mission-card .card-icon,
.vision-card .card-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.mission-card h3,
.vision-card h3 {
    font-size: 28px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 20px;
}

.mission-card p,
.vision-card p {
    font-size: 16px;
    color: #b4bac2;
    line-height: 1.8;
}

/* Values Section */
.our-values {
    padding: 80px 0;
    background: #0a0a0a;
}

.our-values .section-title {
    font-size: 42px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 50px;
}

.text-center {
    text-align: center;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.value-card {
    background: #1a1a1a;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    border: 1px solid #323232;
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(7, 80, 208, 0.2);
    border-color: #0750d0;
}

.value-icon {
    font-size: 36px;
    color: #0969ff;
    margin-bottom: 20px;
}

.value-card h4 {
    font-size: 20px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 15px;
}

.value-card p {
    color: #b4bac2;
    line-height: 1.6;
}

/* Statistics Section */
.stats-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #0750d0, #0969ff);
}

.stats-section .section-title {
    font-size: 42px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 50px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 56px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
}

/* Team Section */
.team-section {
    padding: 80px 0;
    background: #0a0a0a;
}

.team-section .section-title {
    font-size: 42px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
}

.team-section .section-subtitle {
    font-size: 18px;
    color: #b4bac2;
    margin-bottom: 50px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.team-member {
    background: #1a1a1a;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    border: 1px solid #323232;
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
    border-color: #0750d0;
}

.member-image {
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #0750d0;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.member-name {
    font-size: 20px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 5px;
}

.member-role {
    font-size: 14px;
    color: #0969ff;
    margin-bottom: 15px;
}

.member-bio {
    font-size: 14px;
    color: #b4bac2;
    line-height: 1.6;
    margin-bottom: 20px;
}

.member-socials {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.member-socials a {
    color: #b4bac2;
    font-size: 18px;
    transition: color 0.3s ease;
}

.member-socials a:hover {
    color: #0969ff;
}

/* Partners Section */
.partners-section {
    padding: 80px 0;
    background: #141414;
}

.partners-section .section-title {
    font-size: 42px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
}

.partners-section .section-subtitle {
    font-size: 18px;
    color: #b4bac2;
    margin-bottom: 50px;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 40px;
    align-items: center;
}

.partner-logo {
    text-align: center;
    font-size: 64px;
    color: #666;
    transition: all 0.3s ease;
}

.partner-logo:hover {
    color: #0969ff;
    transform: scale(1.2);
}

/* About CTA Section */
.about-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #000000, #0750d0);
    text-align: center;
}

.about-cta .cta-content h2 {
    font-size: 48px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
}

.about-cta .cta-content p {
    font-size: 20px;
    color: #b4bac2;
    margin-bottom: 40px;
}

.about-cta .cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

/* Responsive Design */
@media (max-width: 991px) {
    .story-grid {
        grid-template-columns: 1fr;
    }
    
    .mv-grid {
        grid-template-columns: 1fr;
    }
    
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .partners-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .about-hero .page-title {
        font-size: 36px;
    }
    
    .about-hero .page-subtitle {
        font-size: 18px;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-cta .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

/* Gallery Carousel Section */
.gallery-carousel-section {
    padding: 80px 0;
    background: #0a0a0a;
}

.gallery-carousel-section .heading-block {
    text-align: center;
    margin-bottom: 20px;
}

.gallery-carousel-section .heading-block h3 {
    font-size: 42px;
    font-weight: 700;
    color: #ffffff;
}

.gallery-carousel-section .wpb_text_column {
    margin-bottom: 50px;
}

.gallery-carousel-section .wpb_text_column p {
    font-size: 18px;
    color: #b4bac2;
}

.photo-carousel-block {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.gallery-carousel-slick {
    margin: 0 -5px;
    position: relative;
}

.gallery-carousel-slick .slick-track {
    display: flex;
    align-items: stretch;
}

.gallery-carousel-slick .photo-slide {
    height: 200px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    margin: 0 5px;
}

.photo-carousel-block .slide-link {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
}

.photo-carousel-block .slide-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, transparent 100%);
    padding: 20px 15px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.photo-carousel-block .swiper-slide:hover .slide-overlay {
    opacity: 1;
}

.photo-carousel-block .slide-title {
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    margin: 0;
    text-align: center;
}

/* Slick gallery pagination */
.gallery-carousel-slick .slick-dots {
    bottom: -30px;
    display: flex;
    justify-content: center;
    list-style: none;
    padding: 0;
    margin: 0;
}

.gallery-carousel-slick .slick-dots li button {
    background: #666;
    border-radius: 50%;
    width: 10px;
    height: 10px;
    font-size: 0;
    padding: 0;
    margin: 0 5px;
    border: none;
    cursor: pointer;
}

.gallery-carousel-slick .slick-dots li.slick-active button {
    background: #0969ff;
}

.gallery-nav-arrows {
    position: absolute;
    top: -70px;
    right: 0;
    display: flex;
    gap: 10px;
    z-index: 10;
    pointer-events: none;
}

.gallery-nav-arrows .gallery-prev,
.gallery-nav-arrows .gallery-next {
    width: 40px;
    height: 40px;
    background: transparent;
    border: 2px solid #0969ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: all;
}

.gallery-nav-arrows .gallery-prev:hover,
.gallery-nav-arrows .gallery-next:hover {
    background: #0969ff;
    transform: scale(1.1);
}


@media (max-width: 767px) {
    .photo-carousel-block .swiper-slide {
        height: 150px;
    }
    
    .gallery-carousel-section .heading-block h3 {
        font-size: 32px;
    }
}

/* WooCommerce Category Header */
.page-top-block.type-woocommerce {
    position: relative;
    padding: 80px 0;
    overflow: hidden;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
}

.woo-category-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    overflow: hidden;
}

/* Tech lines pattern SVG */
.woo-category-background .tech-lines-pattern {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 1;
    z-index: 1;
}

/* Pulse animation for dots */
@keyframes pulseDot {
    0%, 100% {
        transform: scale(1);
        opacity: 0.8;
    }
    50% {
        transform: scale(1.5);
        opacity: 1;
    }
}

.tech-lines-pattern .pulse-dot {
    animation: pulseDot 3s ease-in-out infinite;
    transform-origin: center;
}

/* Path animations */
@keyframes pathMove {
    0% {
        stroke-dasharray: 0 1000;
        stroke-dashoffset: 0;
    }
    50% {
        stroke-dasharray: 1000 1000;
        stroke-dashoffset: -500;
    }
    100% {
        stroke-dasharray: 0 1000;
        stroke-dashoffset: -1000;
    }
}

.tech-lines-pattern .path-animation {
    animation: pathMove 10s linear infinite;
}

.tech-lines-pattern .path-animation-reverse {
    animation: pathMove 12s linear infinite reverse;
}

/* Dash animation for connection lines */
@keyframes dashMove {
    0% {
        stroke-dashoffset: 0;
    }
    100% {
        stroke-dashoffset: -10;
    }
}

.tech-lines-pattern .dash-animation {
    animation: dashMove 1s linear infinite;
}

.page-top-block.type-woocommerce .container {
    position: relative;
    z-index: 10;
}

/* Using default heading styles - no custom styles applied */

/* Glow effect on hover */
.page-top-block.type-woocommerce:hover .tech-lines-pattern {
    filter: brightness(1.3) contrast(1.1);
    transition: filter 0.3s ease;
}

/* Ensure SVG is visible */
.page-top-block.type-woocommerce .woo-category-background svg {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

@media (max-width: 768px) {
    .page-top-block.type-woocommerce {
        padding: 50px 0;
    }
    
    /* Adjust SVG pattern for mobile */
    .woo-category-background .tech-lines-pattern {
        transform: scale(1.5);
        transform-origin: center;
    }
    
    .tech-lines-pattern .tech-nodes circle {
        r: 3;
    }
    
    .tech-lines-pattern .grid-lines {
        opacity: 0.2;
    }
}

@media (max-width: 480px) {
    .page-top-block.type-woocommerce {
        padding: 40px 0;
    }
    
    /* Further scale SVG for small screens */
    .woo-category-background .tech-lines-pattern {
        transform: scale(2);
    }
}

/* Category Carousel Section - Slick Slider */
.category-carousel-section {
    padding: 80px 0;
    background: transparent;
}

.category-carousel-section .heading-block {
    margin-bottom: 40px;
}

.category-carousel-section .heading-block h3 {
    font-size: 42px;
    font-weight: 700;
    color: #ffffff;
}

.team-block.team-carousel {
    position: relative;
}

.team-block .nav-arrows {
    position: absolute;
    top: -70px;
    right: 0;
    display: flex;
    gap: 10px;
    z-index: 10;
    pointer-events: none;
}

.team-block .nav-arrows .prev,
.team-block .nav-arrows .next {
    width: 40px;
    height: 40px;
    background: transparent;
    border: 2px solid #0969ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: all;
}

.team-block .nav-arrows .prev:hover,
.team-block .nav-arrows .next:hover {
    background: #0969ff;
    transform: scale(1.1);
}

.team-item {
    text-align: center;
}

.team-item .avatar {
    position: relative;
    height: 300px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 20px;
}

.team-item .avatar .link {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.7);
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.team-item .avatar:hover .link {
    opacity: 1;
}

.team-item .bottom {
    padding: 0 10px;
}

.team-item .bottom .name {
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 10px;
}

.team-item .bottom .social-links {
    display: flex;
    gap: 10px;
    justify-content: center;
}

@media (max-width: 991px) {
    .team-block .nav-arrows {
        display: none;
    }
}

@media (max-width: 767px) {
    .category-carousel-section {
        padding: 40px 0;
    }
    
    .category-carousel-section .heading-block h3 {
        font-size: 28px;
    }
    
    .team-block .nav-arrows {
        position: relative;
        top: auto;
        right: auto;
        justify-content: center;
        margin-top: 20px;
        margin-bottom: 20px;
    }
    
    .team-item .avatar {
        height: 200px;
    }
    
    .team-item .bottom .name {
        font-size: 14px;
    }
    
    .team-item .bottom .sticker {
        font-size: 10px;
    }
    
    .category-carousel-slick {
        margin: 0 -5px;
    }
    
    .category-carousel-slick .team-item {
        padding: 0 5px;
    }
    
    .category-carousel-slick .slick-track {
        min-height: 250px;
    }
}

@media (max-width: 480px) {
    .category-carousel-section {
        padding: 30px 0;
    }
    
    .category-carousel-section .heading-block h3 {
        font-size: 24px;
        line-height: 1.2;
    }
    
    .team-block .nav-arrows .prev,
    .team-block .nav-arrows .next {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
    
    .team-item .avatar {
        height: 180px;
        margin-bottom: 15px;
    }
    
    .team-item .bottom .name {
        font-size: 13px;
    }
    
    .team-item .avatar .link {
        font-size: 14px;
    }
}

/* Slick Slider Styles */
.category-carousel-slick {
    margin: 0 -10px;
}

.category-carousel-slick .team-item {
    padding: 0 10px;
    outline: none;
}

.category-carousel-slick .slick-track {
    display: flex;
    align-items: stretch;
    min-height: 300px;
}

.category-carousel-slick .slick-slide {
    height: auto;
}

.category-carousel-section .slick-slider {
    position: relative;
    touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}
