* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-green: #0d7f4f;
    --dark-green: #064d30;
    --light-green: #10a86d;
    --accent-green: #12d87e;
    --bg-dark: #0a0f0d;
    --bg-card: #0f1612;
    --bg-card-hover: #131d17;
    --text-primary: #ffffff;
    --text-secondary: #b4c4bc;
    --text-muted: #6b7f75;
    --border-color: #1a2820;
    --shadow-sm: 0 2px 8px rgba(13, 127, 79, 0.1);
    --shadow-md: 0 4px 16px rgba(13, 127, 79, 0.15);
    --shadow-lg: 0 8px 32px rgba(13, 127, 79, 0.2);
    --shadow-xl: 0 16px 48px rgba(13, 127, 79, 0.25);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}


.bg-effects {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.3;
    animation: float 20s ease-in-out infinite;
}

.orb-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--primary-green), transparent);
    top: -150px;
    left: -150px;
    animation-delay: 0s;
}

.orb-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--accent-green), transparent);
    bottom: -100px;
    right: -100px;
    animation-delay: 7s;
}

.orb-3 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, var(--light-green), transparent);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 14s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(80px, -80px) scale(1.1);
    }
    66% {
        transform: translate(-80px, 80px) scale(0.9);
    }
}


.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 15, 13, 0.9);
    backdrop-filter: blur(20px);
    padding: 2rem 0;
    animation: slideDown 0.5s ease-out;
    border-bottom: 1px solid var(--border-color);
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.nav-content {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    gap: 2rem;
}

.logo {
    position: fixed;
    top: 20px;
    left: 2rem;
    z-index: 1001;
    display: flex;
    align-items: center;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.1) rotate(5deg);
}

.logo-image {
    height: 80px;
    width: 80px;
    border-radius: 50%;
    object-fit: cover;
    filter: drop-shadow(0 4px 12px rgba(13, 127, 79, 0.5));
    transition: all 0.3s ease;
    border: 3px solid var(--accent-green);
    background: var(--bg-dark);
}

.logo:hover .logo-image {
    filter: drop-shadow(0 6px 20px rgba(13, 127, 79, 0.8));
    border-color: var(--light-green);
}


.brand-name {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.brand-text {
    font-size: 1.75rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--accent-green), var(--light-green), var(--accent-green));
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 3s ease-in-out infinite;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    position: relative;
    cursor: default;
    filter: drop-shadow(0 2px 8px rgba(18, 216, 126, 0.3));
}

@keyframes shimmer {
    0%, 100% {
        background-position: 0% center;
    }
    50% {
        background-position: 100% center;
    }
}

.brand-text::before {
    content: 'Geyik Shop';
    position: absolute;
    top: 0;
    left: 0;
    background: linear-gradient(135deg, var(--text-primary), var(--accent-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.brand-text:hover::before {
    opacity: 1;
}


.charity-banner {
    position: fixed;
    top: 22px;
    right: 2rem;
    z-index: 1001;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.charity-banner:hover {
    transform: translateY(-2px);
}

.paw-icon {
    width: 2rem;
    height: 2rem;
    animation: pawGlow 2s ease-in-out infinite;
    filter: drop-shadow(0 0 12px rgba(255, 105, 180, 0.8)) 
            drop-shadow(0 0 20px rgba(255, 105, 180, 0.5));
    transition: all 0.3s ease;
}

.charity-banner:hover .paw-icon {
    filter: drop-shadow(0 0 18px rgba(255, 105, 180, 1)) 
            drop-shadow(0 0 30px rgba(255, 105, 180, 0.8));
}

@keyframes pawGlow {
    0%, 100% {
        filter: drop-shadow(0 0 12px rgba(255, 182, 217, 0.8)) 
                drop-shadow(0 0 20px rgba(255, 105, 180, 0.5));
        transform: scale(1);
    }
    50% {
        filter: drop-shadow(0 0 18px rgba(255, 182, 217, 1)) 
                drop-shadow(0 0 30px rgba(255, 105, 180, 0.7));
        transform: scale(1.05);
    }
}

.charity-percentage {
    font-size: 2rem;
    font-weight: 900;
    color: #FF69B4;
    text-shadow: 0 0 15px rgba(255, 105, 180, 0.6);
    line-height: 1;
}

.charity-description {
    font-size: 0.75rem;
    color: var(--text-secondary);
    font-weight: 500;
    margin-left: 0.5rem;
}



.main-grid {
    max-width: 1600px;
    margin: 0 auto;
    padding: 170px 2rem 2rem;
    display: grid;
    grid-template-columns: 1.5fr 1.5fr;
    grid-template-rows: auto auto;
    gap: 1.5rem;
    min-height: calc(100vh - 170px);
}


.hero-section {
    grid-column: 1;
    grid-row: 1;
    padding: 3rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    animation: fadeInUp 0.6s ease-out;
    min-height: 400px;
}

.hero-title {
    font-size: 5rem;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-word-plain {
    color: var(--text-primary);
    display: inline-block;
}

.hero-word-better {
    display: inline-block;
    font-size: 1.4em;
    font-weight: 950;
    background: linear-gradient(135deg, var(--accent-green), var(--light-green), var(--accent-green));
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 4s ease-in-out infinite;
    position: relative;
    letter-spacing: 0.02em;
}

.hero-word-better::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--accent-green), transparent);
    border-radius: 2px;
    animation: underlineGlow 3s ease-in-out infinite;
}

@keyframes underlineGlow {
    0%, 100% {
        opacity: 0.4;
        transform: scaleX(0.8);
    }
    50% {
        opacity: 1;
        transform: scaleX(1);
    }
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-secondary);
    font-weight: 300;
    line-height: 1.6;
    max-width: 90%;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


.products-row-top {
    grid-column: 2;
    grid-row: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}


.products-row-bottom {
    grid-column: 1 / -1;
    grid-row: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}


.product-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    position: relative;
}


.product-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    gap: 0.5rem;
}


.features-btn {
    background: rgba(18, 216, 126, 0.15);
    border: 1px solid rgba(18, 216, 126, 0.3);
    border-radius: 6px;
    padding: 0.3rem 0.6rem;
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--accent-green);
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
    white-space: nowrap;
    opacity: 0;
    transform: translateX(10px);
    pointer-events: none;
    position: relative;
    z-index: 5;
}

.product-card:hover .features-btn {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
}

.features-btn:hover {
    background: rgba(18, 216, 126, 0.25);
    border-color: rgba(18, 216, 126, 0.5);
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 20px;
    padding: 1px;
    background: linear-gradient(135deg, var(--accent-green), transparent);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    background: var(--bg-card-hover);
    box-shadow: var(--shadow-xl);
}

.product-card:hover::before {
    opacity: 1;
}


.product-card.small {
    animation: fadeInUp 0.6s ease-out 0.2s backwards;
}

.product-card.small .product-image {
    height: 120px;
}

.product-card.small .product-content {
    padding: 1.25rem;
}

.product-card.small .product-title {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}


.product-card.large {
    animation: fadeInUp 0.6s ease-out 0.4s backwards;
}

.product-card.large .product-image {
    height: 180px;
}

.product-card.large .product-content {
    padding: 1.5rem;
}

.product-card.large .product-title {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}


.product-image {
    position: relative;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-badge {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    padding: 0.4rem 0.8rem;
    background: linear-gradient(135deg, var(--primary-green), var(--light-green));
    color: var(--text-primary);
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 8px;
    box-shadow: var(--shadow-md);
    animation: pulse 2s ease-in-out infinite;
    z-index: 2;
}

.product-badge.premium {
    background: linear-gradient(135deg, #FFD700, #FFA500);
}

.product-badge.new {
    background: linear-gradient(135deg, #FF6B6B, #FF4757);
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}


.game-tag {
    position: absolute;
    bottom: 0.75rem;
    left: 0.75rem;
    padding: 0.3rem 0.6rem;
    color: var(--text-primary);
    font-size: 0.65rem;
    font-weight: 700;
    border-radius: 6px;
    box-shadow: var(--shadow-md);
    z-index: 2;
    backdrop-filter: blur(10px);
}

.game-tag.top-right {
    bottom: auto;
    left: auto;
    top: 0.75rem;
    right: 0.75rem;
}

.game-tag.genshin {
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.9), rgba(75, 0, 130, 0.9));
}

.game-tag.wuthering {
    background: linear-gradient(135deg, rgba(0, 191, 255, 0.9), rgba(30, 144, 255, 0.9));
}

.game-tag.duet {
    background: linear-gradient(135deg, rgba(220, 20, 60, 0.9), rgba(139, 0, 139, 0.9));
}


.new-strip {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 22px;
    background: linear-gradient(135deg, #FF6B6B, #FF4757, #FF6B6B);
    overflow: hidden;
    z-index: 3;
    transform: rotate(0deg);
    box-shadow: 0 2px 8px rgba(255, 75, 87, 0.4);
}

.new-strip-content {
    display: flex;
    align-items: center;
    height: 100%;
    animation: scrollStrip 8s linear infinite;
    white-space: nowrap;
}

.new-strip-content span {
    display: inline-block;
    padding: 0 1.5rem;
    font-size: 0.7rem;
    font-weight: 900;
    color: var(--text-primary);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    letter-spacing: 0.15em;
}

@keyframes scrollStrip {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}


.product-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-title {
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
}

.product-description {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    line-height: 1.5;
    font-size: 0.9rem;
}


.product-variants {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
    flex: 1;
}

.variant-option {
    position: relative;
}

.variant-option input[type="radio"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.variant-option label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 1rem;
    background: rgba(13, 127, 79, 0.1);
    border: 2px solid var(--border-color);
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.875rem;
}

.variant-option input[type="radio"]:checked + label {
    background: rgba(13, 127, 79, 0.2);
    border-color: var(--accent-green);
    box-shadow: 0 0 0 3px rgba(18, 216, 126, 0.1);
}

.variant-name {
    font-weight: 600;
    color: var(--text-primary);
}

.variant-price {
    font-weight: 700;
    color: var(--accent-green);
    font-size: 1rem;
}


.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    margin-top: auto;
}

.product-price {
    display: flex;
    flex-direction: column;
}

.price-amount {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--accent-green);
}


.buy-button {
    padding: 0.875rem 1.75rem;
    background: linear-gradient(135deg, var(--primary-green), var(--light-green));
    color: var(--text-primary);
    border: none;
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
    width: 100%;
}

.buy-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.buy-button:hover::before {
    width: 300px;
    height: 300px;
}

.buy-button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.buy-button span {
    position: relative;
    z-index: 1;
}


.join-server-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    background: linear-gradient(135deg, #5865F2, #7289DA);
    color: white;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(88, 101, 242, 0.3);
    position: relative;
    overflow: hidden;
    margin-top: 0.75rem;
}

.join-server-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.join-server-btn:hover::before {
    width: 300px;
    height: 300px;
}

.join-server-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(88, 101, 242, 0.5);
}

.join-server-btn span {
    position: relative;
    z-index: 1;
}

.discord-icon-small {
    width: 20px;
    height: 20px;
    position: relative;
    z-index: 1;
}


.sellauth-button .icon {
    width: 20px;
    height: 20px;
    margin-left: 8px;
    vertical-align: middle;
    display: inline-block;
}

.sellauth-button .icon.spinner {
    display: none;
    animation: spin 1s linear infinite;
}

.sellauth-button.loading .icon.cart {
    display: none;
}

.sellauth-button.loading .icon.spinner {
    display: inline-block;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}


.modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.modal.active {
    display: flex;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    animation: fadeIn 0.3s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.modal-content {
    position: relative;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 3rem;
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    animation: slideUp 0.4s ease-out;
    box-shadow: var(--shadow-xl);
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-content.embed-modal {
    max-width: 900px;
    padding: 2rem;
}

.modal-content.about-modal {
    max-width: 800px;
}

.modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.modal-close svg {
    width: 20px;
    height: 20px;
    color: var(--text-primary);
}

.modal-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.modal-header {
    text-align: center;
    margin-bottom: 2rem;
}

.modal-title {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.modal-subtitle {
    color: var(--text-secondary);
    font-size: 1.125rem;
    display: flex;
    justify-content: center;
    gap: 1rem;
}

#modalProductPrice {
    color: var(--accent-green);
    font-weight: 700;
}

.payment-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
}

.payment-method-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    padding: 1.5rem 1rem;
    background: rgba(13, 127, 79, 0.1);
    border: 2px solid var(--border-color);
    border-radius: 16px;
    color: var(--text-primary);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.payment-method-btn:hover {
    background: rgba(13, 127, 79, 0.2);
    border-color: var(--accent-green);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.payment-icon-fa {
    font-size: 2.5rem;
    transition: all 0.3s ease;
}

.payment-method-btn:hover .payment-icon-fa {
    transform: scale(1.1);
}


.payment-method-btn:nth-child(1) .payment-icon-fa {
    color: #6c757d;
}

.payment-method-btn:nth-child(1):hover .payment-icon-fa {
    color: #00a4e0;
}


.payment-method-btn:nth-child(2) .payment-icon-fa {
    color: #0070BA;
}

.payment-method-btn:nth-child(2):hover .payment-icon-fa {
    color: #003087;
}


.payment-method-btn:nth-child(3) .payment-icon-fa {
    color: #4285F4;
}

.payment-method-btn:nth-child(3):hover .payment-icon-fa {
    color: #5a95f5;
}


.payment-method-btn:nth-child(4) .payment-icon-fa {
    color: #000000;
}

.payment-method-btn:nth-child(4):hover .payment-icon-fa {
    color: #555555;
}


.payment-method-btn:nth-child(5) .payment-icon-fa {
    color: #09B83E;
}

.payment-method-btn:nth-child(5):hover .payment-icon-fa {
    color: #0ac94a;
}


.payment-method-btn:nth-child(6) .payment-icon-fa {
    color: #00A0E9;
}

.payment-method-btn:nth-child(6):hover .payment-icon-fa {
    color: #1aaff0;
}


.payment-method-btn:nth-child(7) .payment-icon-fa {
    color: #F7931A;
}

.payment-method-btn:nth-child(7):hover .payment-icon-fa {
    color: #f9a64a;
}

.embed-container {
    width: 100%;
    min-height: 500px;
    border-radius: 12px;
    overflow: hidden;
}

.embed-container iframe {
    width: 100%;
    height: 600px;
    border: none;
    border-radius: 12px;
}


.about-content {
    padding: 1rem 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 2rem;
    text-align: center;
    background: linear-gradient(135deg, var(--text-primary), var(--accent-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.feature-item {
    text-align: center;
    padding: 1.5rem;
    background: rgba(13, 127, 79, 0.05);
    border-radius: 16px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-3px);
    background: rgba(13, 127, 79, 0.1);
    box-shadow: var(--shadow-md);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
}

.feature-item h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.feature-item p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.contact-section-inline {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.contact-section-inline h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.contact-methods {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    background: rgba(13, 127, 79, 0.1);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.contact-method:hover {
    transform: translateY(-2px);
    background: rgba(13, 127, 79, 0.2);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-green);
}

.contact-icon {
    font-size: 1.5rem;
}


@media (max-width: 1200px) {
    .main-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto auto;
    }
    
    .hero-section {
        grid-column: 1;
        grid-row: 1;
        text-align: center;
        padding: 1.5rem 0;
    }
    
    .products-row-top {
        grid-column: 1;
        grid-row: 2;
    }
    
    .products-row-bottom {
        grid-column: 1;
        grid-row: 3;
    }
    
    .hero-title {
        font-size: 3.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.75rem;
    }
}

@media (max-width: 768px) {
    .nav-content {
        padding: 0 1.5rem;
    }
    
    .logo {
        left: 1rem;
        top: 8px;
    }
    
    .logo-image {
        height: 60px;
        width: 60px;
    }
    
    .charity-banner {
        right: 1rem;
        top: 12px;
    }
    
    .brand-text {
        font-size: 1.25rem;
        letter-spacing: 0.05em;
    }
    
    .charity-banner {
        gap: 0.4rem;
    }
    
    .paw-icon {
        width: 1.75rem;
        height: 1.75rem;
    }
    
    .charity-percentage {
        font-size: 1.75rem;
    }
    
    .charity-description {
        font-size: 0.65rem;
        margin-left: 0.3rem;
    }
    
    .main-grid {
        padding: 120px 1.5rem 2rem;
        grid-template-columns: 1fr;
    }
    
    .hero-section {
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.35rem;
    }
    
    .products-row-top,
    .products-row-bottom {
        grid-template-columns: 1fr;
    }
    
    .product-card.small .product-image,
    .product-card.large .product-image {
        height: 200px;
    }
    
    .payment-methods {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .modal-content {
        padding: 2rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.15rem;
    }
    
    .payment-methods {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .nav-content {
        padding: 0 1rem;
    }
    
    .brand-name {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }
    
    .logo {
        left: 0.5rem;
        top: 5px;
    }
    
    .logo-image {
        height: 50px;
        width: 50px;
        border-width: 2px;
    }
    
    .charity-banner {
        right: 0.5rem;
        top: 10px;
    }
    
    .brand-text {
        font-size: 1.1rem;
    }
    
    .charity-banner {
        gap: 0.3rem;
    }
    
    .paw-icon {
        width: 1.5rem;
        height: 1.5rem;
    }
    
    .charity-percentage {
        font-size: 1.5rem;
    }
    
    .charity-description {
        display: none;
    }
}


.contact-section {
    padding: 3rem 0 2rem;
    background: transparent;
}

.contact-content {
    text-align: center;
    max-width: 100%;
    margin: 0 auto;
    padding: 2rem 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    animation: fadeInUp 0.6s ease-out;
}

.contact-title {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--text-primary), var(--accent-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-description {
    font-size: 0.95rem;
    color: var(--text-secondary);
    max-width: 600px;
    line-height: 1.5;
}

.discord-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.75rem;
    background: linear-gradient(135deg, #5865F2, #7289DA);
    color: white;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    border-radius: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(88, 101, 242, 0.3);
    position: relative;
    overflow: hidden;
}

.discord-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.discord-button:hover::before {
    left: 100%;
}

.discord-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(88, 101, 242, 0.5);
}

.discord-icon {
    width: 20px;
    height: 20px;
}

.contact-note {
    font-size: 0.85rem;
    color: var(--text-muted);
    max-width: 500px;
}


.features-modal-wrapper.active {
    display: flex !important;
}

.features-modal {
    max-width: 800px;
    background: linear-gradient(135deg, var(--bg-card), rgba(13, 127, 79, 0.1));
    border: 2px solid var(--accent-green);
    box-shadow: 0 0 50px rgba(18, 216, 126, 0.3);
    max-height: 90vh;
    overflow-y: auto;
}

.features-header {
    text-align: center;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(18, 216, 126, 0.2);
}

.features-icon-large {
    font-size: 4rem;
    animation: float 3s ease-in-out infinite;
    margin-bottom: 1rem;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(10deg);
    }
}

.features-title {
    font-size: 2.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--accent-green), var(--light-green), var(--accent-green));
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 3s ease-in-out infinite;
}

.features-content {
    padding-top: 2rem;
}

.feature-item-modal {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem;
    margin-bottom: 1rem;
    background: rgba(18, 216, 126, 0.05);
    border-left: 3px solid var(--accent-green);
    border-radius: 10px;
    transition: all 0.3s ease;
    animation: slideInLeft 0.5s ease-out backwards;
}

.feature-item-modal:nth-child(1) { animation-delay: 0.1s; }
.feature-item-modal:nth-child(2) { animation-delay: 0.2s; }
.feature-item-modal:nth-child(3) { animation-delay: 0.3s; }
.feature-item-modal:nth-child(4) { animation-delay: 0.4s; }
.feature-item-modal:nth-child(5) { animation-delay: 0.5s; }

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.feature-item-modal:hover {
    background: rgba(18, 216, 126, 0.1);
    transform: translateX(5px);
}

.feature-icon-modal {
    font-size: 1.5rem;
    min-width: 30px;
}

.feature-text-modal {
    flex: 1;
}

.feature-text-modal h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--accent-green);
    margin-bottom: 0.25rem;
}

.feature-text-modal p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.5;
}


.features-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.feature-category {
    margin-bottom: 0;
}

.category-title {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--accent-green);
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid rgba(18, 216, 126, 0.3);
}

.category-icon {
    font-size: 1.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.category-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
}

.feature-tag {
    background: rgba(18, 216, 126, 0.1);
    border: 1px solid rgba(18, 216, 126, 0.3);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.85rem;
    color: var(--text-primary);
    transition: all 0.3s ease;
    cursor: default;
    text-align: center;
}

.feature-tag:hover {
    background: rgba(18, 216, 126, 0.2);
    border-color: rgba(18, 216, 126, 0.5);
    transform: translateY(-2px);
}


.footer {
    padding: 1.5rem 0;
    border-top: 1px solid var(--border-color);
    background: var(--bg-dark);
}

.footer-content {
    text-align: center;
}

.footer-text {
    color: var(--text-muted);
    font-size: 0.85rem;
}


::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--bg-dark);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-green);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--light-green);
}


::selection {
    background: var(--accent-green);
    color: var(--bg-dark);
}


.ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: scale(0);
    animation: ripple-animation 0.6s ease-out;
    pointer-events: none;
}

@keyframes ripple-animation {
    to {
        transform: scale(2);
        opacity: 0;
    }
}
