@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

:root {
    --primary: #ffd966;
    --primary-dark: #f0b429;
    --secondary: #4aa3ff;
    --secondary-dark: #2a6bb0;
    --dark: #0b0f18;
    --dark-light: #1a1f2f;
    --glass: rgba(20, 25, 40, 0.7);
    --glass-border: rgba(255, 255, 255, 0.1);
    --text: #ffffff;
    --text-secondary: #aab4d3;
    --success: #43b581;
    --error: #ff4757;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background: linear-gradient(145deg, var(--dark) 0%, var(--dark-light) 100%);
    color: var(--text);
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

/* Particles Background */
.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.particle {
    position: absolute;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 50%;
    pointer-events: none;
    animation: float 20s infinite linear;
}

@keyframes float {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.5;
    }
    90% {
        opacity: 0.5;
    }
    100% {
        transform: translateY(-100vh) rotate(360deg);
        opacity: 0;
    }
}

/* Main Container */
.glass-card {
    max-width: 1400px;
    width: 90%;
    margin: 2rem auto;
    background: var(--glass);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 2.5rem;
    padding: 2.5rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 1;
    animation: fadeInUp 0.8s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Profile Section */
.profile-section {
    display: flex;
    gap: 2.5rem;
    align-items: center;
    margin-bottom: 3rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(74, 163, 255, 0.1));
    border-radius: 2rem;
    border: 1px solid rgba(255, 215, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.profile-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 215, 0, 0.1), transparent);
    transform: rotate(45deg);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% {
        transform: translateX(-100%) rotate(45deg);
    }
    20%, 100% {
        transform: translateX(100%) rotate(45deg);
    }
}

.profile-avatar {
    position: relative;
    width: 150px;
    height: 150px;
    flex-shrink: 0;
}

.profile-avatar img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 4px solid var(--primary);
    position: relative;
    z-index: 2;
    object-fit: cover;
}

.avatar-glow {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: radial-gradient(circle, var(--primary) 0%, transparent 70%);
    border-radius: 50%;
    opacity: 0.3;
    animation: pulse 2s infinite;
    z-index: 1;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.3;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.5;
    }
}

.profile-info {
    flex: 1;
}

.profile-name {
    font-size: 2.8rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.profile-badges {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.badge {
    background: rgba(255, 255, 255, 0.1);
    padding: 0.4rem 1.2rem;
    border-radius: 2rem;
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid rgba(255, 215, 0, 0.3);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.badge i {
    color: var(--primary);
}

.profile-bio {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.profile-stats {
    display: flex;
    gap: 2.5rem;
}

.stat {
    text-align: center;
}

.stat-value {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary);
    display: block;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* Section Header */
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 2.5rem 0 1.5rem;
}

.section-title {
    font-size: 1.8rem;
    font-weight: 700;
    background: linear-gradient(to right, #fff, var(--secondary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.section-title i {
    color: var(--primary);
    -webkit-text-fill-color: initial;
}

.control-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid var(--glass-border);
    color: var(--text);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.control-btn:hover {
    background: var(--primary);
    color: var(--dark);
    transform: scale(1.1);
}

/* Services Carousel */
.services-carousel {
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 0.5rem 0;
}

/* Custom scrollbar yang kompatibel */
.services-carousel {
    scrollbar-width: thin;
    scrollbar-color: var(--primary) rgba(255, 255, 255, 0.05);
}

.services-carousel::-webkit-scrollbar {
    height: 6px;
}

.services-carousel::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
}

.services-carousel::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 10px;
}

.services-grid {
    display: flex;
    gap: 1.5rem;
    padding: 0.5rem;
}

.service-item {
    min-width: 280px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    border-radius: 2rem;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.2, 0.9, 0.3, 1.3);
    position: relative;
    overflow: hidden;
}

.service-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.2), transparent);
    transition: left 0.5s ease;
}

.service-item:hover::before {
    left: 100%;
}

.service-item:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: var(--primary);
    box-shadow: 0 20px 30px -8px rgba(255, 215, 0, 0.3);
}

.service-icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 15px var(--primary));
}

.service-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.service-btn {
    background: linear-gradient(135deg, var(--secondary), var(--secondary-dark));
    border: none;
    color: white;
    font-weight: 600;
    padding: 0.8rem 1.5rem;
    border-radius: 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    font-size: 1rem;
    margin-top: 1rem;
}

.service-btn:hover {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    transform: scale(1.05);
    box-shadow: 0 5px 20px var(--primary);
}

/* Stats Row */
.stats-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 3rem 0;
}

.stat-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    border-radius: 1.5rem;
    padding: 2rem 1rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.stat-card:hover::after {
    transform: scaleX(1);
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px -10px var(--primary);
}

.stat-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.2;
}

/* Contact Row */
.contact-row {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 2rem;
    align-items: center;
    justify-content: space-between;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 3rem;
    padding: 1.2rem 2rem;
    margin: 2rem 0;
    border: 1px solid rgba(255,255,255,0.05);
}

.contact-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: #ccd9f0;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 0.6rem 1.2rem;
    border-radius: 2rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 0.95rem;
    text-decoration: none;
}

.contact-item:hover {
    background: #2f3a5c;
    border-color: #ffd966;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px #4aa3ff60;
}

.contact-item:active {
    transform: translateY(2px);
}

.support-badge {
    background: linear-gradient(145deg, var(--primary), var(--primary-dark));
    color: var(--dark);
    padding: 0.7rem 2rem;
    border-radius: 2rem;
    font-weight: 700;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 4px 0 #9e7600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.support-badge:hover {
    transform: translateY(-3px);
    box-shadow: 0 7px 0 #9e7600, 0 0 20px var(--primary);
}

.support-badge:active {
    transform: translateY(4px);
    box-shadow: 0 2px 0 #9e7600;
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.product-card {
    background: rgba(10, 15, 27, 0.8);
    border-radius: 2rem;
    padding: 2rem;
    text-align: center;
    border: 1px solid rgba(255, 215, 0, 0.1);
    transition: all 0.4s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.product-card:hover {
    transform: translateY(-10px);
    border-color: var(--secondary);
    box-shadow: 0 30px 40px -15px var(--secondary);
}

.product-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--primary);
    color: var(--dark);
    padding: 0.3rem 1rem;
    border-radius: 2rem;
    font-size: 0.8rem;
    font-weight: 600;
}

.product-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 15px var(--primary));
}

.product-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.product-desc {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.product-btn {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
    font-weight: 600;
    padding: 0.8rem 1.5rem;
    border-radius: 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    font-size: 1rem;
    margin-top: 0.5rem;
}

.product-btn:hover {
    background: var(--primary);
    color: var(--dark);
    transform: scale(1.05);
    box-shadow: 0 0 30px var(--primary);
}

/* Filter Tabs - Improved for mobile */
.filter-tabs {
    display: flex;
    gap: 0.5rem;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding: 0.5rem 0 1rem;
    margin: 0 -0.5rem;
    scrollbar-width: thin;
    scrollbar-color: var(--primary) rgba(255, 255, 255, 0.05);
    scroll-snap-type: x mandatory;
}

.filter-tabs::-webkit-scrollbar {
    height: 4px;
}

.filter-tabs::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
}

.filter-tabs::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 10px;
}

.filter-tab {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    color: var(--text-secondary);
    padding: 0.6rem 1.5rem;
    border-radius: 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    font-weight: 500;
    white-space: nowrap;
    scroll-snap-align: start;
    flex: 0 0 auto;
}

.filter-tab:hover,
.filter-tab.active {
    background: var(--primary);
    color: var(--dark);
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px var(--primary);
}

.filter-tab:active {
    transform: translateY(0);
}

/* Desktop tetap rapi */
@media (min-width: 769px) {
    .filter-tabs {
        flex-wrap: wrap;
        overflow-x: visible;
        padding: 0;
        margin: 0;
        justify-content: flex-end;
    }
    
    .filter-tab {
        white-space: normal;
    }
}

/* Mobile optimization */
@media (max-width: 768px) {
    .filter-tabs {
        width: 100%;
        margin: 0.5rem 0;
    }
    
    .filter-tab {
        padding: 0.5rem 1.2rem;
        font-size: 0.9rem;
    }
}

/* Testimonials */
.testimonials-carousel {
    overflow: hidden;
    margin: 2rem 0;
}

.testimonials-grid {
    display: flex;
    gap: 2rem;
    transition: transform 0.5s ease;
    overflow-x: auto;
    padding: 1rem 0;
    scrollbar-width: thin;
    scrollbar-color: var(--primary) rgba(255, 255, 255, 0.05);
}

.testimonials-grid::-webkit-scrollbar {
    height: 6px;
}

.testimonials-grid::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
}

.testimonials-grid::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 10px;
}

.testimonial-card {
    min-width: 300px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    border-radius: 1.5rem;
    padding: 2rem;
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 1rem;
    left: 1rem;
    font-size: 4rem;
    color: var(--primary);
    opacity: 0.3;
    font-family: serif;
}

.testimonial-text {
    color: var(--text);
    font-size: 1rem;
    line-height: 1.6;
    margin: 1rem 0;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1.5rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
}

.author-info h4 {
    font-size: 1.1rem;
    margin-bottom: 0.2rem;
}

.author-info p {
    color: var(--text-secondary);
    font-size: 0.8rem;
}

/* Rating Form */
.rating-form-container {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    border-radius: 2rem;
    padding: 2rem;
    margin: 1rem 0 2rem;
}

.rating-form-container.hidden {
    display: none;
}

.rating-form-container h3 {
    margin-bottom: 1rem;
    color: var(--primary);
    font-size: 1.4rem;
}

.rating-stars-input {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    justify-content: center;
}

.star-input {
    font-size: 2.5rem;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.2s ease;
}

.star-input.active,
.star-input:hover {
    color: var(--primary);
    transform: scale(1.1);
}

#ratingFormElement input,
#ratingFormElement textarea {
    width: 100%;
    padding: 1rem;
    margin-bottom: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    border-radius: 1rem;
    color: var(--text);
    font-size: 1rem;
}

#ratingFormElement input:focus,
#ratingFormElement textarea:focus {
    outline: none;
    border-color: var(--primary);
}

.submit-rating-btn {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border: none;
    color: var(--dark);
    font-weight: 600;
    padding: 1rem 2rem;
    border-radius: 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    font-size: 1rem;
}

.submit-rating-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px var(--primary);
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    align-items: center;
    justify-content: center;
}

.modal.show {
    display: flex;
}

.modal-content {
    background: var(--glass);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 2rem;
    padding: 2.5rem;
    max-width: 500px;
    width: 90%;
    position: relative;
    animation: modalPop 0.3s ease;
}

@keyframes modalPop {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.close-modal {
    position: absolute;
    right: 1.5rem;
    top: 1rem;
    font-size: 2rem;
    background: none;
    border: none;
    color: var(--text-secondary);
    cursor: pointer;
    transition: color 0.3s ease;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.close-modal:hover {
    color: var(--primary);
    background: rgba(255, 255, 255, 0.1);
}

.order-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin: 2rem 0 1rem;
}

.order-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1.5rem 0.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    border-radius: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    color: var(--text);
}

.order-option:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 10px 20px -5px var(--primary);
}

.order-option i {
    font-size: 2rem;
}

/* Discord Join Section */
.join-section {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(135deg, #141b33, #0d1225);
    border-radius: 2rem;
    padding: 2rem 2.5rem;
    margin: 3rem 0 2rem;
    border: 1px solid rgba(255, 215, 0, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.join-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(255, 215, 0, 0.1), transparent 70%);
    pointer-events: none;
}

.join-section:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: 0 30px 40px -20px var(--primary);
}

.join-content {
    display: flex;
    align-items: center;
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.discord-icon {
    font-size: 4rem;
    color: #5865F2;
    filter: drop-shadow(0 0 20px #5865F2);
    animation: wiggle 2s infinite;
}

@keyframes wiggle {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(5deg); }
    75% { transform: rotate(-5deg); }
}

.discord-stats {
    display: flex;
    gap: 1.5rem;
    margin-top: 0.5rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.discord-stats i {
    margin-right: 0.3rem;
}

.join-btn {
    background: var(--primary);
    border: none;
    color: var(--dark);
    font-weight: 700;
    padding: 1rem 3rem;
    border-radius: 3rem;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    position: relative;
    z-index: 1;
    overflow: hidden;
    text-decoration: none;
}

.join-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.join-btn:hover::before {
    left: 100%;
}

.join-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px var(--primary);
}

.join-btn:hover i {
    transform: translateX(5px);
}

.join-btn i {
    transition: transform 0.3s ease;
}

/* Footer */
.footer {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid var(--glass-border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--primary);
    color: var(--dark);
    transform: translateY(-3px) scale(1.1);
}

/* Toast Notification */
.toast {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--dark);
    padding: 1rem 2rem;
    border-radius: 3rem;
    font-weight: 600;
    transform: translateY(100px);
    opacity: 0;
    transition: all 0.3s ease;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.toast.show {
    transform: translateY(0);
    opacity: 1;
}

.toast i {
    font-size: 1.2rem;
}

/* Loading Overlay */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(11, 15, 24, 0.95);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: opacity 0.5s ease;
}

.loading-overlay.hidden {
    opacity: 0;
    pointer-events: none;
}

.loading-content {
    text-align: center;
}

.loading-spinner {
    width: 60px;
    height: 60px;
    border: 4px solid rgba(255, 215, 0, 0.3);
    border-radius: 50%;
    border-top-color: var(--primary);
    animation: spin 1s linear infinite;
    margin-bottom: 1rem;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.loading-content p {
    font-size: 1.2rem;
    font-weight: 600;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    transform: translateX(-20px);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .glass-card {
        width: 95%;
        padding: 1.5rem;
    }
    
    .profile-name {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .profile-section {
        flex-direction: column;
        text-align: center;
    }
    
    .profile-badges {
        justify-content: center;
    }
    
    .profile-stats {
        justify-content: center;
    }
    
    .join-section {
        flex-direction: column;
        text-align: center;
    }
    
    .join-content {
        flex-direction: column;
    }
    
    .footer {
        flex-direction: column;
        text-align: center;
    }
    
    .order-options {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .glass-card {
        padding: 1rem;
        border-radius: 1.5rem;
    }
    
    .profile-name {
        font-size: 1.8rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .product-card {
        padding: 1.5rem;
    }
    
    .toast {
        left: 20px;
        right: 20px;
        bottom: 20px;
        text-align: center;
    }
}

/* Accessibility */
.control-btn:focus-visible,
.filter-tab:focus-visible,
.service-btn:focus-visible,
.product-btn:focus-visible,
.contact-item:focus-visible,
.support-badge:focus-visible,
.join-btn:focus-visible,
.social-link:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

/* Print styles */
@media print {
    .glass-card {
        background: white;
        color: black;
    }
    
    .particles,
    .toast,
    .loading-overlay,
    .control-btn,
    .service-btn,
    .product-btn,
    .join-btn {
        display: none !important;
    }
}

/* Service Modal Overlay */
.service-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.service-modal-overlay.active {
    opacity: 1;
    pointer-events: all;
}

/* Service Modal Content */
.service-modal-content {
    background: linear-gradient(145deg, #1a1f2f, #0b0f18);
    border: 2px solid var(--primary);
    border-radius: 2.5rem;
    padding: 3rem 2.5rem;
    max-width: 500px;
    width: 90%;
    transform: scale(0.7);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 30px 60px rgba(255, 215, 0, 0.3);
    position: relative;
    text-align: center;
}

.service-modal-content.active {
    transform: scale(1);
    opacity: 1;
}

.service-modal-content .service-icon {
    font-size: 5rem;
    margin-bottom: 1.5rem;
    animation: bounce 1s ease infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.service-modal-content .service-title {
    font-size: 2rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.service-modal-content .service-desc {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

/* Modal Platform List */
.modal-platforms {
    margin-top: 2rem;
}

.modal-platforms h4 {
    font-size: 1.2rem;
    color: var(--text);
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

.modal-platforms h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    border-radius: 3px;
}

.platform-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.platform-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.2rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    border-radius: 1.5rem;
    color: var(--text);
    text-decoration: none;
    transition: all 0.3s ease;
    transform: translateX(-20px);
    opacity: 0;
    animation: slideInRight 0.3s ease forwards;
}

.platform-item:nth-child(1) { animation-delay: 0.1s; }
.platform-item:nth-child(2) { animation-delay: 0.2s; }
.platform-item:nth-child(3) { animation-delay: 0.3s; }

@keyframes slideInRight {
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.platform-item:hover {
    transform: translateX(10px) scale(1.02);
    border-color: var(--primary);
    box-shadow: 0 10px 20px rgba(255, 215, 0, 0.2);
}

.platform-item.whatsapp:hover {
    background: rgba(37, 211, 102, 0.2);
    border-color: #25D366;
}

.platform-item.discord:hover {
    background: rgba(88, 101, 242, 0.2);
    border-color: #5865F2;
}

.platform-item.tiktok:hover {
    background: rgba(0, 0, 0, 0.3);
    border-color: #000000;
}

.platform-item i {
    font-size: 2rem;
    width: 40px;
    text-align: center;
}

.platform-item span {
    font-size: 1.1rem;
    font-weight: 600;
}

/* Modal Close Button */
.modal-close-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid var(--glass-border);
    color: var(--text);
    padding: 0.8rem 2rem;
    border-radius: 2rem;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

.modal-close-btn:hover {
    background: var(--error);
    border-color: var(--error);
    transform: scale(1.05);
}

/* Original service item (yang di background jadi blur pas modal active) */
body.modal-open .glass-card > *:not(.service-modal-overlay) {
    filter: blur(5px);
    transition: filter 0.3s ease;
    pointer-events: none;
}

/* Responsive untuk modal */
@media (max-width: 768px) {
    .service-modal-content {
        padding: 2rem 1.5rem;
    }
    
    .service-modal-content .service-icon {
        font-size: 4rem;
    }
    
    .service-modal-content .service-title {
        font-size: 1.6rem;
    }
    
    .platform-item {
        padding: 1rem;
    }
    
    .platform-item i {
        font-size: 1.6rem;
    }
    
    .platform-item span {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .service-modal-content {
        padding: 1.5rem 1rem;
        width: 95%;
    }
    
    .platform-list {
        gap: 0.8rem;
    }
}
