:root {
    --gk-dark-bg: #0a0a0f;
    --gk-dark-card: #111118;
    --gk-dark-border: #1a1a24;
    --gk-primary-green: #4ade80;
    --gk-primary-green-dark: #22c55e;
    --gk-accent-glow: rgba(74, 222, 128, 0.4);
    --gk-text-white: #ffffff;
    --gk-text-gray: rgba(255, 255, 255, 0.6);
    --gk-text-light: rgba(255, 255, 255, 0.8);
    --gk-text-dark: #1a1a24;
    --gk-input-bg: #1a1a24;
}

body,
body.bg-06 {
    background-color: var(--gk-dark-bg) !important;
    background-image: none !important;
    color: var(--gk-text-white);
    font-family: 'Rajdhani', 'Montserrat', sans-serif;
}

.page-wrapper {
    padding-top: 80px;
}

.gk-header {
    background: #2a7554;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--gk-dark-border);
    padding: 20px 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.gk-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.gk-logo {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--gk-text-white);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 12px;
}

.gk-nav {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 40px;
}

.gk-nav li a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-weight: 500;
    text-transform: capitalize;
    letter-spacing: normal;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.gk-nav li a:hover,
.gk-nav li a.active {
    color: var(--gk-text-white);
}

.gk-connect-btn {
    background: #4ade80;
    color: #000;
    font-weight: 700;
    padding: 12px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.gk-connect-btn:hover {
    background: #22c55e;
    box-shadow: 0 0 20px rgba(74, 222, 128, 0.4);
}

.gk-hero-section {
    position: relative;
    min-height: 800px;
    display: flex;
    align-items: center;
    padding: 80px 0;
}

.gk-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
}

.gk-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, rgba(10, 10, 15, 0.95) 0%, rgba(10, 10, 15, 0.7) 40%, rgba(10, 10, 15, 0.3) 100%);
}

.gk-hero-content {
    text-align: center;
    position: relative;
    z-index: 2;
    margin-bottom: 60px;
}

.gk-hero-content h1 {
    font-size: 4rem;
    font-weight: 900;
    color: var(--gk-text-white);
    margin-bottom: 20px;
    line-height: 1.2;
}

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

.gk-hero-content p {
    font-size: 1.2rem;
    color: var(--gk-text-gray);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.gk-hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
}

.gk-btn-green {
    background: var(--gk-primary-green);
    color: #000;
    font-weight: 700;
    padding: 14px 35px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
}

.gk-btn-green:hover {
    background: var(--gk-primary-green-dark);
    box-shadow: 0 0 25px rgba(74, 222, 128, 0.4);
    transform: translateY(-2px);
}

.gk-btn-outline {
    background: transparent;
    color: var(--gk-text-white);
    font-weight: 700;
    padding: 14px 35px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.gk-btn-outline:hover {
    border-color: var(--gk-primary-green);
    color: var(--gk-primary-green);
}

.gk-hero-nft-showcase {
    display: flex;
    justify-content: center;
    gap: 20px;
    position: relative;
    z-index: 2;
}

.gk-nft-showcase-item {
    width: 240px;
    height: 140px;
    border-radius: 12px;
    overflow: hidden;
    border: 3px solid var(--gk-primary-green);
    transition: all 0.3s ease;
}

.gk-nft-showcase-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gk-nft-showcase-item:hover {
    border-color: var(--gk-primary-green);
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(74, 222, 128, 0.3);
}

.gk-nft-1 {
    transform: translateY(-20px);
}

.gk-nft-2 {
    transform: translateY(-30px);
}

.gk-nft-3 {
    transform: translateY(-15px);
}

.gk-nft-4 {
    transform: translateY(-25px);
}
.gk-nft-5 {
    transform: translateY(-20px);
}

.gk-price-info {
    display: flex;
    gap: 20px;
}

.gk-price-info span:first-child {
    color: var(--gk-text-gray);
    font-size: 0.9rem;
}

.gk-categories-section {
    padding: 80px 0;
}

.gk-section-title {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--gk-text-white);
    text-align: center;
    margin-bottom: 50px;
}

.gk-categories-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.gk-category-item {
    background: var(--gk-dark-card);
    border: 1px solid var(--gk-dark-border);
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.gk-category-item:hover {
    border-color: var(--gk-primary-green);
    transform: translateY(-5px);
}



.gk-category-item span:first-of-type {
    display: block;
    font-size: 1rem;
    font-weight: 700;
    color: var(--gk-text-white);
    margin-bottom: 5px;
}

.gk-category-count {
    font-size: 0.85rem;
    color: var(--gk-primary-green);
    font-weight: 600;
}



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


.gk-nft-btn {
    width: 100%;
    padding: 12px;
    font-size: 0.9rem;
}

.gk-top-sellers-section {
    padding: 80px 0;
    background: var(--gk-dark-card);
}

.gk-top-sellers-grid {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 15px;
}

.gk-top-seller-item {
    background: var(--gk-dark-bg);
    border: 1px solid var(--gk-dark-border);
    border-radius: 12px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.3s ease;
}

.gk-top-seller-item:hover {
    border-color: var(--gk-primary-green);
}

.gk-seller-rank {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--gk-primary-green);
    margin-bottom: 15px;
}

.gk-top-seller-item img {
    width: 60px;
    object-fit: cover;
    margin-bottom: 15px;

}

.gk-seller-info h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--gk-text-white);
    margin: 0 0 5px 0;
}

.gk-seller-info span {
    font-size: 0.75rem;
    color: var(--gk-text-gray);
}

.gk-footer {
    background: #2a7554;
    border-top: 1px solid var(--gk-dark-border);
    padding: 80px 0 30px;
}

.gk-footer-top {
    margin-bottom: 50px;
}

.gk-footer-brand {
    margin-bottom: 30px;
}

.gk-footer-brand .gk-logo {
    margin-bottom: 20px;
}

.gk-footer-brand p {
    color: var(--gk-text-gray);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 25px;
    max-width: 400px;
}

.gk-payment-icons {
    display: flex;
    gap: 12px;
}

.gk-payment-icons img {
    height: 35px;
    width: auto;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.gk-payment-icons img:hover {
    opacity: 1;
    transform: translateY(-3px);
}

.gk-footer-links h4 {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--gk-text-white);
    text-transform: uppercase;
    margin-bottom: 20px;
    letter-spacing: 1px;
    text-align: right;
}

.gk-footer-links ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.gk-footer-links ul li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
}

.gk-footer-links ul li a {
    color: var(--gk-text-gray);
    text-decoration: none;
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.gk-footer-links ul li a:hover {
    color: var(--gk-primary-green);
}

.gk-footer-links ul li i {
    color: var(--gk-primary-green);
    font-size: 0.85rem;
    width: 16px;
}

.gk-footer-bottom {
    border-top: 1px solid #399b70;
    padding-top: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.gk-footer-bottom p {
    color: var(--gk-text-gray);
    font-size: 0.85rem;
    margin: 0;
}

.gk-footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 15px;
}

.gk-footer-bottom-links a {
    color: var(--gk-text-gray);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s ease;
}

.gk-footer-bottom-links a:hover {
    color: var(--gk-primary-green);
}

.gk-footer-bottom-links span {
    color: var(--gk-dark-border);
}

@media (max-width: 960px) {
    .gk-hero-content h1 {
        font-size: 2.5rem;
    }

    .gk-hero-stats {
        gap: 40px;
    }

    .gk-nft-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gk-categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gk-top-sellers-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .gk-nav {
        gap: 15px;
    }

    .gk-nav li a {
        font-size: 0.75rem;
    }
}

.gk-page-hero {
    min-height: 400px;
}

.gk-page-hero .gk-hero-content {
    margin-bottom: 0;
}

.gk-page-hero .gk-hero-content h1 {
    font-size: 3rem;
    margin-bottom: 10px;
}

.gk-page-content {
    padding: 60px 0;
}

.gk-content-card {
    background: var(--gk-dark-card);
    border: 1px solid var(--gk-dark-border);
    border-radius: 16px;
    padding: 40px;
}

.gk-content-body {
    color: var(--gk-text-light);
    line-height: 1.8;
    font-size: 1.1rem;
}

.gk-content-body h2 {
    color: var(--gk-text-white);
    font-size: 1.8rem;
    font-weight: 700;
    margin: 30px 0 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--gk-dark-border);
}

.gk-content-body h3 {
    color: var(--gk-text-white);
    font-size: 1.4rem;
    font-weight: 600;
    margin: 25px 0 12px;
}

.gk-content-body p {
    margin-bottom: 15px;
    color: var(--gk-text-gray);
}

.gk-content-body ul,
.gk-content-body ol {
    padding-left: 25px;
    margin-bottom: 15px;
    color: var(--gk-text-gray);
}

.gk-content-body li {
    margin-bottom: 8px;
}

.gk-content-body a {
    color: var(--gk-primary-green);
    text-decoration: none;
    transition: color 0.3s ease;
}

.gk-content-body a:hover {
    color: var(--gk-primary-green-dark);
    text-decoration: underline;
}

.gk-content-body img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 15px 0;
}

.gk-content-body blockquote {
    border-left: 4px solid var(--gk-primary-green);
    padding-left: 20px;
    margin: 20px 0;
    color: var(--gk-text-gray);
    font-style: italic;
}