/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Top Strip */
.top-strip {
    background: linear-gradient(90deg, #00ff88, #00cc6a);
    color: #000;
    text-align: center;
    padding: 8px 0;
    font-weight: 600;
    font-size: 14px;
}

/* Navigation */
.navbar {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(74, 144, 226, 0.2);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: bold;
    font-size: 18px;
}

.nav-logo i {
    color: #4a90e2;
    font-size: 24px;
}

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.logo-link:hover {
    transform: scale(1.05);
}

.logo-img {
    height: 40px;
    width: auto;
}

.nav-menu {
    display: flex;
    gap: 30px;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #4a90e2;
}

.nav-icons {
    display: flex;
    gap: 20px;
    font-size: 18px;
    cursor: pointer;
    align-items: center;
}

.nav-icons i:hover {
    color: #4a90e2;
    transition: color 0.3s ease;
}

/* Search Container */
.search-container {
    position: relative;
    display: flex;
    align-items: center;
}

.search-icon {
    position: absolute;
    left: 10px;
    z-index: 2;
    color: #4a90e2;
    cursor: pointer;
}

.search-input {
    background: rgba(20, 20, 40, 0.8);
    border: 1px solid rgba(74, 144, 226, 0.3);
    border-radius: 25px;
    padding: 8px 15px 8px 35px;
    color: #fff;
    font-size: 14px;
    width: 200px;
    transition: all 0.3s ease;
}

.search-input:focus {
    outline: none;
    border-color: #4a90e2;
    box-shadow: 0 0 10px rgba(74, 144, 226, 0.3);
    width: 250px;
}

.search-input::placeholder {
    color: #999;
}

.search-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(15, 15, 25, 0.95);
    border: 1px solid rgba(74, 144, 226, 0.3);
    border-radius: 8px;
    max-height: 300px;
    overflow-y: auto;
    z-index: 1000;
    display: none;
    backdrop-filter: blur(10px);
}

.search-dropdown.show {
    display: block;
}

.search-result {
    padding: 12px 15px;
    border-bottom: 1px solid rgba(74, 144, 226, 0.1);
    cursor: pointer;
    transition: background 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.search-result:hover {
    background: rgba(74, 144, 226, 0.1);
}

.search-result img {
    width: 30px;
    height: 30px;
    object-fit: cover;
    border-radius: 4px;
}

.search-result-info h4 {
    color: #fff;
    font-size: 14px;
    margin: 0;
    font-weight: 600;
}

.search-result-info p {
    color: #ccc;
    font-size: 12px;
    margin: 0;
}

.no-results {
    padding: 15px;
    text-align: center;
    color: #999;
    font-size: 14px;
}

/* Hero Section */
.hero {
    padding: 80px 0;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-title {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
}

.white-text {
    color: #ffffff;
}

.blue-text {
    color: #4a90e2;
    text-shadow: 0 0 20px rgba(74, 144, 226, 0.5);
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
    line-height: 1.6;
}

.rating {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 40px;
}

.stars {
    display: flex;
    gap: 5px;
}

.stars i {
    color: #ffd700;
    font-size: 20px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

.btn {
    padding: 12px 24px;
    border: none;
    border-radius: 4px;
    font-weight: 500;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: inherit;
}

.btn-primary {
    background: #4a90e2;
    color: white;
    border: 1px solid #4a90e2;
}

.btn-primary:hover {
    background: #357abd;
    border-color: #357abd;
}

.btn-secondary {
    background: transparent;
    color: #4a90e2;
    border: 1px solid #4a90e2;
}

.btn-secondary:hover {
    background: #4a90e2;
    color: white;
}

.btn-success {
    background: #666;
    color: white;
    border: 1px solid #666;
    font-weight: 600;
}

.btn-success:hover {
    background: linear-gradient(45deg, #4a90e2, #357abd);
    border-color: #4a90e2;
}

.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 500px;
}

.character-image {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 700px;
}

.character-image img {
    width: 100%;
    max-width: 800px;
    height: auto;
    border-radius: 0;
    box-shadow: none;
    border: none;
    transition: transform 0.3s ease;
    object-fit: contain;
    display: block;
}

.character-image:hover img {
    transform: scale(1.02);
}

.brand-overlay {
    position: absolute;
    right: -20px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.9);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    z-index: 1;
    border: 1px solid rgba(74, 144, 226, 0.2);
    backdrop-filter: blur(5px);
}

.brand-logo {
    margin-bottom: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.brand-logo-img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    filter: drop-shadow(0 0 10px rgba(74, 144, 226, 0.5));
}

.brand-text h3 {
    color: #ffffff;
    font-size: 1rem;
    margin-bottom: 5px;
    font-weight: 600;
}

.brand-text p {
    color: #4a90e2;
    font-weight: 500;
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.brand-text small {
    color: #ccc;
    font-size: 0.8rem;
}

/* Products Section */
.products {
    padding: 100px 0;
    background: rgba(0, 0, 0, 0.3);
    overflow: hidden;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: #ffffff;
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    opacity: 0.8;
    margin-bottom: 60px;
}

.products-carousel {
    overflow: hidden;
    position: relative;
    padding: 20px 0;
}

.products-track {
    display: flex;
    gap: 30px;
    animation: slide 30s linear infinite;
    width: calc(280px * 10 + 30px * 9); /* Width for 10 cards with gaps */
}

@keyframes slide {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-280px * 5 - 30px * 4)); /* Move by half the track width */
    }
}

.products-carousel:hover .products-track {
    animation-play-state: paused;
}

.product-card {
    background: rgba(15, 15, 25, 0.9);
    border: 1px solid rgba(74, 144, 226, 0.2);
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    min-width: 250px;
    flex-shrink: 0;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.product-card:hover {
    transform: translateY(-5px);
    border-color: #4a90e2;
    box-shadow: 0 10px 25px rgba(74, 144, 226, 0.2);
}

.product-image {
    margin-bottom: 15px;
    overflow: hidden;
    border-radius: 6px;
    position: relative;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
    filter: grayscale(100%) brightness(0.7);
}

.product-card:hover .product-image img {
    filter: grayscale(0%) brightness(1);
    transform: scale(1.05);
}

.product-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Features Section */
.features {
    padding: 100px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.feature-card {
    background: rgba(20, 20, 40, 0.8);
    border: 2px solid rgba(74, 144, 226, 0.3);
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: #4a90e2;
    box-shadow: 0 15px 30px rgba(74, 144, 226, 0.2);
}

.feature-icon {
    font-size: 3rem;
    color: #4a90e2;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #ffffff;
}

.feature-card p {
    opacity: 0.8;
    line-height: 1.6;
}

/* FAQ Section */
.faq {
    padding: 100px 0;
    background: rgba(0, 0, 0, 0.3);
}

.faq-header {
    text-align: center;
    margin-bottom: 60px;
}

.faq-subtitle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.faq-subtitle i {
    color: #4a90e2;
    font-size: 1.5rem;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(20, 20, 40, 0.8);
    border: 2px solid rgba(74, 144, 226, 0.3);
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
}

.faq-question {
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(74, 144, 226, 0.1);
}

.faq-question i {
    color: #4a90e2;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 20px 25px;
    max-height: 200px;
}

/* Support Section */
.support {
    padding: 100px 0;
    text-align: center;
}

.support h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.support p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.8;
}

/* Footer */
.footer {
    background: rgba(0, 0, 0, 0.8);
    padding: 60px 0 20px;
    border-top: 1px solid rgba(74, 144, 226, 0.2);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    margin-bottom: 20px;
    color: #ffffff;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #4a90e2;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-item i {
    color: #00ff88;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    flex-wrap: wrap;
    gap: 20px;
}

.footer-right {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: color 0.3s ease;
}

.footer-right:hover {
    color: #4a90e2;
}

.footer-right i {
    font-size: 1.5rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .nav-menu {
        display: none;
    }
    
    .nav-icons {
        gap: 15px;
    }
    
    .search-input {
        width: 150px;
    }
    
    .search-input:focus {
        width: 180px;
    }
    
    .products-carousel {
        overflow-x: auto;
        padding: 20px 0;
    }
    
    .products-track {
        animation: none;
        gap: 20px;
    }
    
    .product-card {
        min-width: 200px;
        max-width: 250px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .brand-overlay {
        position: static;
        transform: none;
        margin-top: 20px;
        right: auto;
    }
    
    .character-image {
        max-width: 100%;
    }
    
    .character-image img {
        max-width: 100%;
    }
    
    .discord-chat-button {
        bottom: 15px;
        right: 15px;
    }
    
    .discord-link {
        width: 50px;
        height: 50px;
    }
    
    .discord-link i {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
    
    .nav-container {
        padding: 0 15px;
    }
    
    .nav-icons {
        gap: 10px;
    }
    
    .search-input {
        width: 120px;
        font-size: 12px;
    }
    
    .search-input:focus {
        width: 150px;
    }
    
    .products-track {
        gap: 15px;
    }
    
    .product-card {
        min-width: 180px;
        padding: 15px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .discord-chat-button {
        bottom: 10px;
        right: 10px;
    }
    
    .discord-link {
        width: 45px;
        height: 45px;
    }
    
    .discord-link i {
        font-size: 18px;
    }
}

/* Discord Chat Button */
.discord-chat-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.discord-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: #5865f2;
    border-radius: 50%;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(88, 101, 242, 0.4);
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.discord-link:hover {
    background: #4752c4;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(88, 101, 242, 0.6);
}

.discord-link i {
    font-size: 24px;
    color: white;
}

@keyframes pulse {
    0% {
        box-shadow: 0 4px 12px rgba(88, 101, 242, 0.4);
    }
    50% {
        box-shadow: 0 4px 12px rgba(88, 101, 242, 0.8);
    }
    100% {
        box-shadow: 0 4px 12px rgba(88, 101, 242, 0.4);
    }
}

@keyframes addingToCart {
    0% {
        transform: scale(1);
        background: #4a90e2;
    }
    50% {
        transform: scale(1.1);
        background: #00ff88;
    }
    100% {
        transform: scale(1);
        background: #00ff88;
    }
}

/* Animation Classes */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-slide-left {
    animation: slideInLeft 0.6s ease-out;
}

.animate-slide-right {
    animation: slideInRight 0.6s ease-out;
}

.animate-fade-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Cart Styles */
.cart-icon {
    position: relative;
}

.cart-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #ff4444;
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
    min-width: 20px;
    text-align: center;
    line-height: 1;
}

.nav-icons {
    position: relative;
}

.cart-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: rgba(0, 204, 106, 0.9);
    color: white;
    padding: 15px 20px;
    border-radius: 8px;
    z-index: 10000;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    backdrop-filter: blur(10px);
}

.cart-notification.show {
    transform: translateX(0);
}

.notification-content {
    display: flex;
    align-items: center;
    gap: 10px;
}

.cart-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    animation: fadeIn 0.3s ease;
}

.cart-modal .modal-content {
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    border-radius: 15px;
    padding: 30px;
    max-width: 600px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    border: 2px solid #4a90e2;
    animation: slideInUp 0.3s ease;
}

.cart-modal .modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(74, 144, 226, 0.3);
}

.cart-modal .modal-header h2 {
    color: #4a90e2;
    font-size: 1.8rem;
}

.cart-modal .close-btn {
    background: none;
    border: none;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
    transition: color 0.3s ease;
}

.cart-modal .close-btn:hover {
    color: #4a90e2;
}

.empty-cart {
    text-align: center;
    color: #ccc;
    font-size: 1.2rem;
    padding: 40px;
}

.cart-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid rgba(74, 144, 226, 0.1);
}

.cart-item:last-child {
    border-bottom: none;
}

.item-image {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 8px;
}

.item-details {
    flex: 1;
}

.item-details h4 {
    color: #fff;
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.item-details p {
    color: #4a90e2;
    font-weight: 600;
    margin: 0;
}

.quantity-controls {
    display: flex;
    align-items: center;
    gap: 10px;
}

.quantity-btn {
    background: #4a90e2;
    color: white;
    border: none;
    width: 30px;
    height: 30px;
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.quantity-btn:hover {
    background: #357abd;
}

.quantity-input {
    width: 50px;
    text-align: center;
    background: rgba(20, 20, 40, 0.8);
    border: 1px solid rgba(74, 144, 226, 0.3);
    border-radius: 4px;
    color: #fff;
    padding: 5px;
}

.item-total {
    color: #fff;
    font-weight: 600;
    min-width: 80px;
    text-align: right;
}

.remove-btn {
    background: #ff4444;
    color: white;
    border: none;
    width: 30px;
    height: 30px;
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.remove-btn:hover {
    background: #cc3333;
}

.modal-footer {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(74, 144, 226, 0.3);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-total {
    color: #fff;
    font-size: 1.2rem;
}

.checkout-btn {
    background: #4a90e2;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: background 0.3s ease;
}

.checkout-btn:hover {
    background: #357abd;
}

/* Payment Methods */
.payment-methods {
    margin: 20px 0;
    padding: 20px 0;
    border-top: 1px solid rgba(74, 144, 226, 0.3);
}

.payment-methods h4 {
    color: #fff;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.payment-options {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.payment-option {
    position: relative;
}

.payment-option input[type="radio"] {
    display: none;
}

.payment-option label {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 20px;
    background: rgba(20, 20, 40, 0.8);
    border: 2px solid rgba(74, 144, 226, 0.3);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #fff;
}

.payment-option input[type="radio"]:checked + label {
    border-color: #4a90e2;
    background: rgba(74, 144, 226, 0.1);
}

.payment-option label:hover {
    border-color: #4a90e2;
    background: rgba(74, 144, 226, 0.05);
}

.payment-option label i {
    font-size: 1.2rem;
    width: 20px;
    text-align: center;
}

.payment-option label i.fa-bitcoin {
    color: #f7931a;
}

.payment-option label i.fa-coins {
    color: #bfbbbb;
}

.payment-option label i.fa-paypal {
    color: #0070ba;
}

/* Responsive Cart */
@media (max-width: 768px) {
    .cart-modal .modal-content {
        width: 95%;
        padding: 20px;
    }
    
    .cart-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .item-details {
        width: 100%;
    }
    
    .quantity-controls {
        align-self: center;
    }
    
    .modal-footer {
        flex-direction: column;
        gap: 15px;
        align-items: stretch;
    }
    
    .checkout-btn {
        justify-content: center;
    }
}
