/* Base Styles */
:root {
    --primary-color: #4ade80;
    --secondary-color: #10b981;
    --dark-color: #064e3b;
    --light-color: #ecfdf5;
    --accent-color: #fb923c;
    --text-light: #f8fafc;
    --text-dark: #0f172a;
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
    --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    --glow-color: rgba(0, 0, 0, 0.7);
    --navbar-bg: rgba(255, 255, 255, 0.15);
    --mobile-navbar-bg: rgba(0, 0, 0, 0.85);
    --footer-bg: rgba(0, 0, 0, 0.95);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

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

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
}

/* Parallax Effects */
.parallax-container {
    position: relative;
    width: 100%;
    min-height: 100vh;
    overflow: hidden;
}





.hero .parallax-bg {
    background-image: url('https://i.redd.it/bzqmnzdql1j91.png');
}

.dark-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: -1;
}


.secondary-bg {
    background-image: url('assets/about-bg.jpg');
}

.third-bg {
    background-image: url('assets/modes-bg.jpg');
}

.fourth-bg {
    background-image: url('assets/servers-bg.jpg');
}

.store-bg {
    background-image: url('https://i.redd.it/bzqmnzdql1j91.png');
}

.vip-bg {
    background-image: url('assets/vip-bg.jpg');
}

/* Glass Card Effect */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    box-shadow: var(--glass-shadow);
    padding: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.glass-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

/* Glow Effect */
.glow-text {
    text-shadow: 0 0 10px var(--glow-color), 0 0 20px var(--glow-color);
}

/* Header & Navigation */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 0.8rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    transition: background-color 0.5s ease;
    background-color: transparent;
    backdrop-filter: blur(0px);
}

header.scrolled {
    background: var(--navbar-bg);
    backdrop-filter: blur(8px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.logo img {
    height: 40px;
}

nav ul {
    display: flex;
    gap: 1.5rem;
}

nav ul li a {
    font-weight: 600;
    padding: 0.4rem 0.8rem;
    border-radius: 8px;
    transition: color 0.3s ease, background-color 0.3s ease;
    font-size: 0.95rem;
}

nav ul li a:hover,
nav ul li a.active {
    color: var(--primary-color);
    background-color: rgba(255, 255, 255, 0.1);
}

.menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

.menu-close {
    display: none;
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-light);
    z-index: 2000;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 2rem;
}

.store-hero {
    height: 60vh;
}

.hero-content {
    margin-top: 5rem;
    max-width: 800px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-logo {
    margin-bottom: 2rem;
}

.hero-logo img {
    height: 300px;
    filter: drop-shadow(0 0 10px rgba(74, 222, 128, 0.5));
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.store-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.server-ip {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

#server-address {
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-right: 1rem;
}

#copy-btn {
    background: transparent;
    border: none;
    color: var(--primary-color);
    font-size: 1.2rem;
    cursor: pointer;
    transition: transform 0.3s ease;
}

#copy-btn:hover {
    transform: scale(1.2);
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

/* Buttons */
.btn {
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    outline: none;
    text-align: center;
    display: inline-block;
}

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

.btn-primary:hover {
    background-color: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 7px 15px rgba(16, 185, 129, 0.3);
}

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

.btn-secondary:hover {
    background-color: rgba(74, 222, 128, 0.1);
    transform: translateY(-3px);
    box-shadow: 0 7px 15px rgba(16, 185, 129, 0.2);
}

/* Content Wrapper */
.content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 6rem 2rem;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 2.5rem;
    text-align: center;
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 2px;
}

.section-description {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    font-size: 1.2rem;
    opacity: 0.9;
}

/* About Section */
.player-count {
    text-align: center;
    margin-top: 3rem;
}

.player-count .count {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary-color);
    display: block;
}

.player-count .label {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Game Modes */
.modes-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.mode-card {
    text-align: center;
}

.mode-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.mode-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.mode-card p {
    opacity: 0.9;
    font-size: 0.95rem;
}

/* Servers Section */
.servers-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.server-card {
    text-align: center;
}

.server-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.server-card p {
    margin-bottom: 1.5rem;
    font-family: monospace;
    font-size: 1.2rem;
    opacity: 0.9;
}

.status {
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-weight: 600;
    margin-bottom: 1rem;
}

.status.online {
    background-color: rgba(16, 185, 129, 0.2);
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
}

.status.offline {
    background-color: rgba(239, 68, 68, 0.2);
    color: #ef4444;
    border: 1px solid #ef4444;
}

.server-card .player-count {
    margin-top: 1rem;
    opacity: 0.8;
    font-size: 0.9rem;
}

/* Footer */
footer {
    background-color: var(--footer-bg);
    padding: 4rem 2rem 1rem;
    box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.2);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-logo img {
    height: 60px;
    margin-bottom: 1rem;
}

.footer-links h4,
.footer-social h4 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-links h4::after,
.footer-social h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
}

.footer-links ul li {
    margin-bottom: 0.8rem;
}

.footer-links ul li a {
    opacity: 0.8;
    transition: opacity 0.3s ease, color 0.3s ease;
}

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

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

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background-color: var(--primary-color);
    color: var(--dark-color);
    transform: translateY(-3px);
}

.footer-bottom {
    max-width: 1200px;
    margin: 3rem auto 0;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    opacity: 0.7;
    font-size: 0.9rem;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .hero-content h1 {
        font-size: 3rem;
    }
    
    .hero-logo img {
        height: 120px;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }
    
    
    
    nav ul {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background-color: var(--mobile-navbar-bg);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: right 0.4s ease;
        z-index: 999;
    }
    
    nav ul.active {
        right: 0;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-logo img {
        height: 300px;
    }
    
    #server-address {
        font-size: 1.2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero-cta {
        flex-direction: column;
        gap: 1rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 0.5rem;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-logo img {
        height: 200px;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .server-ip {
        padding: 0.6rem 1rem;
    }
    
    #server-address {
        font-size: 1rem;
    }
    
    .mode-card,
    .server-card,
    .package-card {
        padding: 1.5rem;
    }
}

/* Cart Icon */
.cart-icon {
    position: relative;
    font-size: 1.5rem;
    margin-left: 1.5rem;
    cursor: pointer;
    color: var(--text-light);
    transition: color 0.3s ease;
}

.cart-icon:hover {
    color: var(--primary-color);
}

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

/* Cart Sidebar */
.cart-sidebar {
    position: fixed;
    top: 0;
    right: -400px;
    width: 380px;
    max-width: 90vw;
    height: 100vh;
    background-color: var(--mobile-navbar-bg);
    z-index: 2000;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.3);
    transition: right 0.3s ease-in-out;
    display: flex;
    flex-direction: column;
    backdrop-filter: blur(10px);
}

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

.cart-header {
    padding: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-header h3 {
    margin: 0;
    font-size: 1.5rem;
}

.close-cart {
    font-size: 1.2rem;
    cursor: pointer;
    transition: color 0.3s ease;
}

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

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

.empty-cart {
    text-align: center;
    margin-top: 2rem;
    opacity: 0.7;
}

.cart-item {
    padding: 1rem;
    margin-bottom: 1rem;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.item-image {
    width: 50px;
    height: 50px;
    border-radius: 4px;
    overflow: hidden;
}

.item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.item-details {
    flex: 1;
}

.item-details h4 {
    margin: 0 0 0.5rem;
    font-size: 1.1rem;
}

.item-price {
    opacity: 0.8;
    font-size: 0.9rem;
}

.item-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.quantity-form {
    display: flex;
    align-items: center;
}

.quantity-input {
    width: 40px;
    padding: 0.3rem;
    text-align: center;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    color: var(--text-light);
}

.update-btn,
.remove-btn {
    background-color: transparent;
    border: none;
    color: var(--text-light);
    cursor: pointer;
    transition: color 0.3s ease;
    padding: 0.3rem;
}

.update-btn:hover {
    color: var(--primary-color);
}

.remove-btn:hover {
    color: #ef4444;
}

.cart-summary {
    padding: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.cart-total {
    display: flex;
    justify-content: space-between;
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.cart-summary .btn {
    width: 100%;
    margin-bottom: 0.8rem;
}

/* Package Images */
.package-image {
    width: 100px;
    height: 100px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
    border: none
}

.package-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Payment Modal Cart Items */
.cart-items-summary {
    margin: 1rem 0;
    border-radius: 8px;
    overflow: hidden;
}

.cart-item-summary {
    display: flex;
    justify-content: space-between;
    padding: 0.8rem;
    background-color: rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.cart-item-summary:last-child {
    border-bottom: none;
}

.cart-total-summary {
    display: flex;
    justify-content: space-between;
    font-weight: 700;
    padding: 1rem;
    margin-top: 1rem;
    background-color: rgba(74, 222, 128, 0.1);
    border-radius: 8px;
}


/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 3000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.modal-content {
    position: relative;
    margin: 5% auto;
    width: 90%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    animation: modalFadeIn 0.3s ease;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.close-modal {
    position: absolute;
    top: 1rem;
    right: 1rem;
    color: var(--text-light);
    font-size: 1.5rem;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close-modal:hover {
    color: var(--primary-color);
}

.modal-content h2 {
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Form Styling */
.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-control {
    width: 100%;
    padding: 0.8rem;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--text-light);
    font-size: 1rem;
}

.form-group input[type="text"]:focus,
.form-group input[type="email"]:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(74, 222, 128, 0.2);
}

.payment-methods {
    display: flex;
    gap: 2rem;
    margin-bottom: 1.5rem;
}

.payment-method {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

#stripe-elements {
    margin-bottom: 1.5rem;
}

#card-element {
    padding: 1rem;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background-color: rgba(255, 255, 255, 0.1);
}

#card-errors {
    color: #fa755a;
    margin-top: 0.5rem;
    font-size: 0.9rem;
}

/* Result Dialog Styles */
.result-dialog {
    display: none;
    position: fixed;
    z-index: 3000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
}

.result-dialog-content {
    position: relative;
    margin: 10% auto;
    width: 90%;
    max-width: 500px;
    padding: 2rem;
    text-align: center;
    animation: modalBounceIn 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes modalBounceIn {
    0% {
        opacity: 0;
        transform: scale(0.8);
    }
    70% {
        transform: scale(1.05);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.result-icon-container {
    width: 100px;
    height: 100px;
    margin: 0 auto 1.5rem;
    position: relative;
}

/* Success Icon Animation */
.checkmark {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: block;
    stroke-width: 2;
    stroke: #4ADE80;
    stroke-miterlimit: 10;
    box-shadow: 0 0 20px rgba(74, 222, 128, 0.3);
    animation: fill-success 0.4s ease-in-out 0.4s forwards, scale 0.3s ease-in-out 0.9s both;
}

.checkmark-circle {
    stroke-dasharray: 166;
    stroke-dashoffset: 166;
    stroke-width: 2;
    stroke-miterlimit: 10;
    stroke: #4ADE80;
    fill: none;
    animation: stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}

.checkmark-check {
    transform-origin: 50% 50%;
    stroke-dasharray: 48;
    stroke-dashoffset: 48;
    animation: stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.8s forwards;
}

@keyframes stroke {
    100% {
        stroke-dashoffset: 0;
    }
}

@keyframes fill-success {
    100% {
        box-shadow: inset 0 0 0 80px rgba(74, 222, 128, 0.1);
    }
}

/* Error Icon Animation */
.crossmark {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: block;
    stroke-width: 2;
    stroke: #EF4444;
    stroke-miterlimit: 10;
    box-shadow: 0 0 20px rgba(239, 68, 68, 0.3);
    animation: fill-error 0.4s ease-in-out 0.4s forwards, scale 0.3s ease-in-out 0.9s both;
}

.crossmark-circle {
    stroke-dasharray: 166;
    stroke-dashoffset: 166;
    stroke-width: 2;
    stroke-miterlimit: 10;
    stroke: #EF4444;
    fill: none;
    animation: stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}

.crossmark-x {
    transform-origin: 50% 50%;
    stroke-dasharray: 48;
    stroke-dashoffset: 48;
    animation: stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.8s forwards;
}

@keyframes fill-error {
    100% {
        box-shadow: inset 0 0 0 80px rgba(239, 68, 68, 0.1);
    }
}

@keyframes scale {
    0%, 100% {
        transform: none;
    }
    50% {
        transform: scale3d(1.1, 1.1, 1);
    }
}

.success-dialog h2 {
    color: #4ADE80;
}

.error-dialog h2 {
    color: #EF4444;
}

.result-dialog-content p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.6;
}
.full-page-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://i.redd.it/bzqmnzdql1j91.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: -2;
}

.full-page-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.1);
    z-index: -1;
}
/* Donation slider styling */
.donation-slider-container {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 2rem 0;
}

#donation-slider {
  flex: 1;
  accent-color: var(--primary-color);
}

#donation-amount {
  width: 80px;
  padding: 0.5rem;
  border-radius: 4px;
  border: 1px solid rgba(255,255,255,0.2);
  background-color: rgba(255,255,255,0.1);
  color: var(--text-light);
  font-size: 1rem;
}

.vip-reward {
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
  text-align: center;
}
/* Donation-specific styles */
.donation-container {
    max-width: 800px;
    margin: 0 auto;
}

.donation-amount-section {
    text-align: center;
    margin: 3rem 0;
}

.amount-display {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.amount-display .currency {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
}

.amount-display input {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    background: transparent;
    border: none;
    text-align: center;
    width: 200px;
    outline: none;
}

.donation-slider-container {
    margin: 2rem 0;
}

#donation-slider {
    width: 100%;
    height: 8px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    outline: none;
    -webkit-appearance: none;
    appearance: none;
}

#donation-slider::-webkit-slider-thumb {
    appearance: none;
    width: 24px;
    height: 24px;
    background: var(--primary-color);
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 0 10px rgba(74, 222, 128, 0.5);
}

#donation-slider::-moz-range-thumb {
    width: 24px;
    height: 24px;
    background: var(--primary-color);
    border-radius: 50%;
    cursor: pointer;
    border: none;
    box-shadow: 0 0 10px rgba(74, 222, 128, 0.5);
}

.slider-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 0.5rem;
    font-size: 0.9rem;
    opacity: 0.7;
}

.quick-amounts {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.quick-amount-btn {
    padding: 0.8rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--text-light);
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.quick-amount-btn:hover,
.quick-amount-btn.active {
    background: var(--primary-color);
    color: var(--dark-color);
    transform: translateY(-2px);
}

.package-preview-section {
    margin: 3rem 0;
}

.package-preview-section h3 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.8rem;
}

.package-preview-card {
    text-align: center;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.package-preview-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-bottom: 1rem;
    object-fit: cover;
}

.package-preview-card h3 {
    margin: 1rem 0 0.5rem;
    color: var(--primary-color);
    font-size: 1.5rem;
}

.package-price {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.package-description {
    opacity: 0.9;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.package-bonus {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    background: rgba(74, 222, 128, 0.1);
    border-radius: 8px;
    border: 1px solid var(--primary-color);
}

.bonus-amount {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.bonus-text {
    font-size: 0.9rem;
    opacity: 0.8;
}

.no-package-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.support-amount {
    margin-top: 1rem;
}

.support-text {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
}

.donation-cta {
    text-align: center;
    margin: 3rem 0;
}

#donate-btn {
    font-size: 1.2rem;
    padding: 1rem 3rem;
    min-width: 200px;
}

.donation-notice {
    margin-top: 3rem;
    padding: 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.notice-icon {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-top: 0.2rem;
}

.notice-content h4 {
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.notice-content p {
    opacity: 0.9;
    line-height: 1.6;
}

.close-donation-modal {
    position: absolute;
    top: 1rem;
    right: 1rem;
    color: var(--text-light);
    font-size: 1.5rem;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close-donation-modal:hover {
    color: var(--primary-color);
}

/* Responsive design for donation page */
@media (max-width: 768px) {
    .amount-display {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .amount-display input {
        font-size: 2rem;
        width: 150px;
    }
    
    .quick-amounts {
        gap: 0.5rem;
    }
    
    .quick-amount-btn {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }
    
    .donation-notice {
        flex-direction: column;
        text-align: center;
    }
}

/* Simplified package preview layout - no prices shown */
.package-preview-card {
    padding: 2rem;
    margin: 1rem 0;
}

.package-content {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.package-image {
    flex-shrink: 0;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.package-image img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    
}

.no-package-icon {
    font-size: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.package-details {
    flex: 1;
    text-align: left;
}

.package-details h3 {
    margin: 0 0 1rem 0;
    color: var(--primary-color);
    font-size: 1.5rem;
}

.package-description {
    opacity: 0.9;
    line-height: 1.6;
    margin: 0;
    font-size: 1rem;
}

/* Quick amount buttons */
.quick-amount-btn {
    padding: 0.8rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--text-light);
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.quick-amount-btn:hover,
.quick-amount-btn.active {
    background: var(--primary-color);
    color: var(--dark-color);
    transform: translateY(-2px);
}

/* Responsive design */
@media (max-width: 768px) {
    .package-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .package-details {
        text-align: center;
    }
    
    .package-image {
        width: 80px;
        height: 80px;
        align-self: center;
    }
}