/* CSS Variables */
:root {
    --lime-green: #32CD32;
    --lime-dark: #228B22;
    --lime-light: #90EE90;
    --lime-bright: #7FFF00;
    --dark-bg: #1a1a1a;
    --light-bg: #f8f9fa;
    --text-dark: #333;
    --text-light: #fff;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 8px 15px rgba(0, 0, 0, 0.2);
}

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

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--light-bg);
    overflow-x: hidden;
}

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

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar {
    padding: 1rem 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--lime-green);
    text-decoration: none;
}

.logo img {
    width: 40px !important;
    height: 40px !important;
    border-radius: 50% !important;
    object-fit: cover !important;
    transform: scale(1.1) !important;
    clip-path: circle(50%);
}

.logo i {
    margin-right: 10px;
    font-size: 1.8rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 1.5rem;
    align-items: center;
}

.nav-menu a {
    font-size: 0.9rem;
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
    white-space: nowrap;
}

.nav-menu a:hover {
    color: var(--lime-green);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--lime-green);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

.discord-btn {
    background: var(--lime-green);
    color: var(--text-dark) !important;
    padding: 6px 14px !important;
    border-radius: 20px;
    font-weight: 600 !important;
    font-size: 0.85rem !important;
}

.discord-auth-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #5865F2;
    color: white !important;
    padding: 6px 14px !important;
    border-radius: 5px;
    font-weight: 600;
    font-size: 0.85rem !important;
    transition: background 0.3s ease;
    text-decoration: none;
}

.discord-auth-btn:hover {
    background: #4752c4;
}

.user-profile-nav {
    display: flex;
    align-items: center;
    gap: 10px;
}

.user-profile-nav img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid var(--lime-green);
}

.user-profile-nav span {
    font-weight: 600;
    color: var(--text-light);
}

.btn-discord-login:hover {
    background: #4752c4 !important;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-light);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--dark-bg) 0%, #2d2d2d 100%);
    position: relative;
    overflow: hidden;
}

.hero-content {
    flex: 1;
    padding: 0 20px;
    z-index: 2;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-light);
    line-height: 1.2;
}

.lime-text {
    color: var(--lime-green);
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #ccc;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: var(--lime-green);
    color: var(--text-dark);
}

.btn-primary:hover {
    background: var(--lime-dark);
    color: var(--text-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 15px rgba(50, 205, 50, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--text-light);
    border: 2px solid var(--lime-green);
}

.btn-secondary:hover {
    background: var(--lime-green);
    color: var(--text-dark);
    transform: translateY(-2px);
}

.btn-secondary-dark {
    background: transparent;
    color: var(--text-dark);
    border: 2px solid var(--lime-green);
    display: inline-block;
    padding: 12px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    border: 2px solid var(--lime-green);
}

.btn-secondary-dark:hover {
    background: var(--lime-green);
    color: var(--text-dark);
    transform: translateY(-2px);
}

.btn-discord {
    background: #5865F2;
    color: var(--text-light);
    font-size: 1.1rem;
    padding: 15px 35px;
}

.btn-discord:hover {
    background: #4752C4;
    transform: translateY(-2px);
    box-shadow: 0 8px 15px rgba(88, 101, 242, 0.3);
}

.hero-image {
    flex: 1;
    position: relative;
    height: 600px;
}

.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
}

.element {
    position: absolute;
    background: var(--lime-green);
    border-radius: 50%;
    opacity: 0.1;
    animation: float 6s ease-in-out infinite;
}

.element-1 {
    width: 100px;
    height: 100px;
    top: 20%;
    left: 20%;
    animation-delay: 0s;
}

.element-2 {
    width: 150px;
    height: 150px;
    top: 50%;
    right: 20%;
    animation-delay: 2s;
}

.element-3 {
    width: 80px;
    height: 80px;
    bottom: 20%;
    left: 50%;
    animation-delay: 4s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }
}

/* Section Styles */
section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: var(--text-dark);
}

/* Shop Section */
.shop {
    background: var(--text-light);
}

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

.product-card {
    background: var(--text-light);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    position: relative;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.product-image {
    position: relative;
    overflow: hidden;
    height: 300px;
}

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

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(50, 205, 50, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.add-to-cart {
    background: var(--text-dark);
    color: var(--text-light);
    border: none;
    padding: 12px 25px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.add-to-cart:hover {
    background: var(--lime-green);
    transform: scale(1.05);
}

.product-info {
    padding: 1.5rem;
}

.product-info h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.price {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--lime-green);
}

/* Prices Section (Clean Dark Redesign) */
.prices {
    background: var(--dark-bg);
    padding: 80px 0;
}

.prices .section-title {
    color: var(--text-light);
}

.prices-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.price-card {
    background: #252525;
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.price-card:hover {
    transform: translateY(-5px);
    border-color: rgba(50, 205, 50, 0.4);
    background: #2d2d2d;
}

.price-card.highlight {
    border: 1.5px solid var(--lime-green);
    background: rgba(50, 205, 50, 0.05);
}

.price-icon {
    font-size: 2rem;
    color: var(--lime-green);
    margin-bottom: 1rem;
    opacity: 0.9;
}

.price-header h3 {
    font-size: 1.4rem;
    margin-bottom: 0.2rem;
    color: var(--text-light);
    font-weight: 600;
}

.price-amount {
    font-size: 2rem;
    font-weight: 700;
    color: var(--lime-green);
    margin-bottom: 1rem;
}

.price-features {
    width: 100%;
    margin: 1rem 0;
}

.price-features ul {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
    text-align: left;
}

.price-features li {
    font-size: 0.85rem;
    color: #bbb;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.price-features i {
    color: var(--lime-green);
    font-size: 0.75rem;
}

.price-card .btn {
    width: 100%;
    padding: 10px 0;
    font-size: 0.9rem;
    margin-top: auto;
}

.btn-secondary-dark {
    background: transparent;
    color: var(--text-light);
    border: 1.5px solid rgba(255, 255, 255, 0.1);
}

.btn-secondary-dark:hover {
    background: var(--lime-green);
    color: var(--text-dark);
    border-color: var(--lime-green);
}

/* Team Section */
.team {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

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

.team-member {
    background: var(--text-light);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    text-align: center;
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.member-image {
    position: relative;
    overflow: hidden;
    height: 300px;
}

.member-image img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    border-radius: 50% !important;
    transform: scale(1.05) !important;
    clip-path: circle(50%);
    transition: transform 0.3s ease !important;
}

.member-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(50, 205, 50, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.team-member:hover .member-overlay {
    opacity: 1;
}

.member-overlay .social-links {
    display: flex;
    gap: 1rem;
}

.member-overlay a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: var(--text-dark);
    color: var(--text-light);
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.member-overlay a:hover {
    background: var(--lime-green);
    color: var(--text-dark);
    transform: scale(1.1);
}

.member-info {
    padding: 2rem;
}

.member-info h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.role {
    color: var(--lime-green);
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.description {
    color: #666;
    line-height: 1.6;
}

/* Partners Section */
.partners {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

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

.partner-card {
    background: var(--text-light);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.partner-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.partner-logo {
    width: 100px;
    height: 100px;
    background: var(--lime-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.partner-card:hover .partner-logo {
    background: var(--lime-dark);
    transform: scale(1.1);
}

.partner-logo i {
    font-size: 2.5rem;
    color: var(--text-dark);
}

.partner-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.partner-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.partner-card .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

/* About Section */
.about {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text p {
    margin-bottom: 1.5rem;
    color: #666;
    line-height: 1.8;
}

.features {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.feature i {
    font-size: 2rem;
    color: var(--lime-green);
    margin-bottom: 0.5rem;
}

.about-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: var(--shadow-hover);
}

/* Discord Section */
.discord {
    background: var(--dark-bg);
    color: var(--text-light);
}

.discord-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.discord-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.discord-text p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #ccc;
}

.discord-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.stat {
    text-align: center;
    padding: 2rem;
    background: rgba(50, 205, 50, 0.1);
    border-radius: 15px;
    border: 2px solid var(--lime-green);
    transition: all 0.3s ease;
}

.stat:hover {
    transform: translateY(-5px);
    background: rgba(50, 205, 50, 0.2);
}

.stat i {
    font-size: 2.5rem;
    color: var(--lime-green);
    margin-bottom: 1rem;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--lime-green);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #ccc;
    font-size: 0.9rem;
}

/* Payment Methods Section */
.payment {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

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

.payment-method {
    background: var(--text-light);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.payment-method:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.payment-icon {
    width: 80px;
    height: 80px;
    background: var(--lime-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.payment-method:hover .payment-icon {
    background: var(--lime-dark);
    transform: scale(1.1);
}

.payment-icon i {
    font-size: 2rem;
    color: var(--text-dark);
}

.payment-method h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.payment-method p {
    color: #666;
    line-height: 1.6;
}

/* Contact Section */
.contact {
    background: var(--text-light);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.1rem;
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--lime-green);
    width: 30px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-form input,
.contact-form textarea {
    padding: 15px;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--lime-green);
}

/* Footer */
.footer {
    background: var(--dark-bg);
    color: var(--text-light);
    padding: 3rem 0 1rem;
}

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

.footer-section h3 {
    color: var(--lime-green);
    margin-bottom: 1rem;
}

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

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

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

.footer-section a:hover {
    color: var(--lime-green);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--lime-green);
    color: var(--text-dark);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--lime-dark);
    color: var(--text-light);
    transform: translateY(-3px);
}

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

/* Checkout Modal */
/* Checkout Modal SellAuth Style */
.checkout-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    backdrop-filter: blur(5px);
}

.checkout-modal.active {
    display: flex;
}

.modal-content.sellauth-style {
    background: #111;
    color: #fff;
    border-radius: 12px;
    max-width: 1000px;
    width: 95%;
    max-height: 90vh;
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
}

.close-modal-top {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    color: #888;
    font-size: 1.8rem;
    cursor: pointer;
    z-index: 10;
    transition: color 0.3s;
}

.close-modal-top:hover {
    color: #fff;
}

.checkout-container {
    display: grid;
    grid-template-columns: 380px 1fr;
    height: 100%;
    flex: 1;
}

/* Sidebar Styling */
.checkout-sidebar {
    background: #0d0d0d;
    padding: 30px;
    display: flex;
    flex-direction: column;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.sidebar-header {
    margin-bottom: 40px;
}

.shop-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 30px;
}

.sidebar-logo {
    width: 40px;
    height: 40px;
    border-radius: 8px;
}

.shop-name {
    font-weight: 600;
    font-size: 1.1rem;
}

.payment-amount p {
    font-size: 0.9rem;
    color: #888;
    margin-bottom: 5px;
}

.payment-amount h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #fff;
}

.checkout-items-sidebar {
    flex: 1;
    overflow-y: auto;
    margin-bottom: 30px;
}

.checkout-sidebar-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    margin-bottom: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.item-img {
    width: 50px;
    height: 50px;
    border-radius: 6px;
    object-fit: cover;
}

.item-details {
    flex: 1;
}

.item-name-row {
    display: flex;
    justify-content: space-between;
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 4px;
}

.item-price-small {
    font-weight: 700;
}

.item-meta {
    font-size: 0.8rem;
    color: #888;
}

.sidebar-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 25px;
}

.summary-line {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 0.9rem;
    color: #888;
}

.total-line {
    margin-top: 15px;
    font-size: 1.1rem;
    color: #fff;
    font-weight: 700;
}

.sidebar-links {
    margin-top: 30px;
}

.sidebar-links a {
    color: #888;
    text-decoration: none;
    font-size: 0.8rem;
    display: block;
    margin-bottom: 15px;
}

.sidebar-links a:hover {
    color: #fff;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.social-icons a {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 0;
}

.social-icons a:hover {
    color: var(--lime-green);
}

.powered-by {
    font-size: 0.75rem;
    color: #444;
}

.powered-by span {
    color: #666;
    font-weight: 600;
}

/* Main Content Styling */
.checkout-main {
    padding: 40px;
    overflow-y: auto;
    background: #111;
}

.step-indicator {
    display: flex;
    gap: 40px;
    margin-bottom: 50px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 20px;
}

.step {
    display: flex;
    flex-direction: column;
    gap: 5px;
    opacity: 0.3;
    transition: opacity 0.3s;
}

.step.active {
    opacity: 1;
}

.step-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #3b82f6;
    font-weight: 700;
}

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

.checkout-step-content {
    display: none;
    animation: fadeIn 0.3s ease;
}

.checkout-step-content.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-size: 0.95rem;
    font-weight: 600;
    color: #eee;
}

.form-group input {
    width: 100%;
    background: #1a1a1a;
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 15px;
    border-radius: 8px;
    color: #fff;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input:focus {
    outline: none;
    border-color: #3b82f6;
}

.coupon-group {
    display: flex;
    gap: 10px;
}

.btn-apply {
    background: #1e1e1e;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #555;
    padding: 0 20px;
    border-radius: 8px;
    font-weight: 600;
    cursor: default;
}

.btn-checkout-primary {
    width: 100%;
    background: #3b82f6;
    color: #fff;
    padding: 16px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    margin-top: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    transition: background 0.3s, transform 0.2s;
}

.btn-checkout-primary:hover {
    background: #2563eb;
    transform: translateY(-1px);
}

/* Payment Methods Grid */
.form-label-bold {
    display: block;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.payment-methods-grid {
    display: grid;
    gap: 12px;
    margin-bottom: 30px;
}

.payment-method-card {
    cursor: pointer;
    position: relative;
}

.payment-method-card input {
    position: absolute;
    opacity: 0;
}

.method-card-content {
    background: #1a1a1a;
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 18px 24px;
    border-radius: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s;
}

.payment-method-card input:checked+.method-card-content {
    border-color: #3b82f6;
    background: rgba(59, 130, 246, 0.05);
}

.method-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.method-info i {
    font-size: 1.4rem;
    color: #888;
}

.payment-method-card input:checked+.method-card-content .method-info i {
    color: #3b82f6;
}

.method-info span {
    font-weight: 600;
    font-size: 1rem;
}

.method-icon-small {
    display: flex;
    gap: 10px;
    color: #444;
}

/* Agreements */
.checkout-agreements {
    margin-bottom: 30px;
}

.checkbox-container {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    cursor: pointer;
    font-size: 0.85rem;
    color: #888;
    line-height: 1.4;
}

.checkbox-container input {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    margin-top: 2px;
}

.checkbox-text {
    flex: 1;
}

.checkout-actions {
    display: flex;
    gap: 15px;
}

.btn-back {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #888;
    padding: 16px 25px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-back:hover {
    border-color: rgba(255, 255, 255, 0.2);
    color: #fff;
}

/* Paysafecard Input Styles */
.paysafecard-input {
    background: rgba(50, 205, 50, 0.05);
    border-radius: 15px;
    padding: 2rem;
    margin-top: 1rem;
}

.pin-inputs {
    display: grid;
    grid-template-columns: repeat(4, 60px);
    gap: 0.5rem;
    margin-bottom: 2rem;
    justify-content: center;
}

.pin-field {
    padding: 12px;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    font-family: 'Courier New', monospace;
    width: 60px;
    height: 50px;
}

.pin-field:focus {
    outline: none;
    border-color: var(--lime-green);
    background: rgba(50, 205, 50, 0.1);
    transform: scale(1.05);
}

.paysafecard-info {
    margin-bottom: 2rem;
}

.paysafecard-info p {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    color: #666;
    font-size: 0.9rem;
}

.paysafecard-info i {
    color: var(--lime-green);
    width: 20px;
}

.modal-footer .btn {
    flex: 1;
    padding: 15px;
}

/* Paysafecard Direct Payment Styles */
.paysafecard-direct {
    background: rgba(50, 205, 50, 0.05);
    border-radius: 15px;
    padding: 2rem;
    margin-top: 1rem;
    text-align: center;
}

.paysafecard-direct .paysafecard-info {
    margin-bottom: 2rem;
}

.paysafecard-direct .paysafecard-info p {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
}

.paysafecard-direct .paysafecard-info i {
    color: var(--lime-green);
    width: 20px;
    flex-shrink: 0;
}

.paysafecard-direct .btn {
    padding: 15px 30px;
    font-size: 1.1rem;
}

/* Shopping Cart */
.cart-sidebar {
    position: fixed;
    right: -400px;
    top: 0;
    width: 400px;
    height: 100vh;
    background: var(--text-light);
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    z-index: 1001;
    transition: right 0.3s ease;
    display: flex;
    flex-direction: column;
}

.cart-sidebar.active {
    right: 0;
}

.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid #e9ecef;
}

.cart-header h3 {
    color: var(--text-dark);
    font-size: 1.3rem;
}

.close-cart {
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: #666;
    transition: color 0.3s ease;
}

.close-cart:hover {
    color: var(--lime-green);
}

.cart-items {
    flex: 1;
    padding: 1.5rem;
    overflow-y: auto;
}

.empty-cart {
    text-align: center;
    color: #666;
    font-style: italic;
}

.cart-footer {
    padding: 1.5rem;
    border-top: 1px solid #e9ecef;
}

.cart-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-dark);
}

.checkout-btn {
    width: 100%;
    background: var(--lime-green);
    color: var(--text-dark);
    padding: 15px;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.checkout-btn:hover {
    background: var(--lime-dark);
    color: var(--text-light);
}

/* Cart Icon */
.cart-icon {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--lime-green);
    color: var(--text-dark);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: var(--shadow-hover);
    transition: all 0.3s ease;
    z-index: 999;
}

.cart-icon:hover {
    background: var(--lime-dark);
    color: var(--text-light);
    transform: scale(1.1);
}

.cart-count {
    position: absolute;
    top: -5px;
    right: -5px;
    background: var(--text-dark);
    color: var(--text-light);
    width: 25px;
    height: 25px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: var(--dark-bg);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow-hover);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero-content {
        text-align: center;
    }

    .hero-buttons {
        justify-content: center;
    }

    .about-content,
    .discord-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .features {
        flex-direction: column;
        gap: 1rem;
    }

    .discord-stats {
        grid-template-columns: 1fr;
    }

    .product-grid,
    .team-grid,
    .payment-grid,
    .partners-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
    }

    .cart-sidebar {
        width: 100%;
        right: -100%;
    }

    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .product-grid,
    .team-grid,
    .payment-grid,
    .partners-grid {
        grid-template-columns: 1fr;
    }

    .discord-stats {
        grid-template-columns: 1fr;
    }
}

/* Cookie Consent Banner */
.cookie-banner {
    position: fixed;
    bottom: -100%;
    left: 0;
    width: 100%;
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    border-top: 1px solid var(--lime-green);
    padding: 20px 0;
    z-index: 9999;
    transition: bottom 0.5s ease-in-out;
}

.cookie-banner.show {
    bottom: 0;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.cookie-content p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.5;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
    align-items: center;
}

.btn-cookie-info {
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.85rem;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.btn-cookie-info:hover {
    opacity: 1;
    text-decoration: underline;
}

.btn-cookie-accept {
    background: var(--lime-green);
    color: var(--text-dark);
    border: none;
    padding: 8px 25px;
    border-radius: 20px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-cookie-accept:hover {
    background: var(--lime-bright);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
}