:root {
    --primary: #2563eb;
    --primary-dark: #1d4ed8;
    --secondary: #10b981;
    --accent: #8b5cf6;
    --danger: #ef4444;
    --warning: #f59e0b;
    --dark: #0f172a;
    --dark-card: #1e293b;
    --light: #f8fafc;
    --gray: #94a3b8;
    --card-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.3);
    --section-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.2);
    --gradient-main: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    --gradient-hero: linear-gradient(135deg, #0f172a 0%, #1e3a8a 100%);
    --gradient-card: linear-gradient(145deg, #1e293b, #0f172a);
    --gradient-form: linear-gradient(135deg, #2563eb, #1d4ed8);
    --gradient-ipv4: linear-gradient(135deg, #2563eb, #1d4ed8);
    --gradient-ipv6: linear-gradient(135deg, #10b981, #059669);
    --gradient-isp: linear-gradient(135deg, #8b5cf6, #7c3aed);
    --status-online-bg: rgba(16, 185, 129, 0.15);
    --status-online-border: rgba(16, 185, 129, 0.3);
    --status-online-text: #10b981;
    --status-offline-bg: rgba(239, 68, 68, 0.15);
    --status-offline-border: rgba(239, 68, 68, 0.3);
    --status-offline-text: #ef4444;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #0f172a;
    color: #e2e8f0;
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
}

.logo-img {
    height: 50px;
    width: 50px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 0 15px rgba(37, 99, 235, 0.5);
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.logo-text span {
    font-size: 0.8rem;
    color: var(--gray);
    font-weight: 400;
}

/* NEW STATUS BADGE STYLES */
.status {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    border: 1px solid transparent;
    min-width: 120px;
    justify-content: center;
}

.status.online {
    background: var(--status-online-bg);
    border-color: var(--status-online-border);
    color: var(--status-online-text);
    box-shadow: 0 0 20px rgba(16, 185, 129, 0.2);
}

.status.offline {
    background: var(--status-offline-bg);
    border-color: var(--status-offline-border);
    color: var(--status-offline-text);
    box-shadow: 0 0 20px rgba(239, 68, 68, 0.2);
}

.status i {
    font-size: 1rem;
    animation: pulse 2s infinite;
}

.status.online i {
    color: var(--status-online-text);
}

.status.offline i {
    color: var(--status-offline-text);
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.7;
        transform: scale(1.1);
    }
}

.menu {
    display: flex;
    gap: 10px;
}

.menu a {
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 8px;
    color: white;
    font-weight: 500;
    transition: all 0.3s ease;
    background-color: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.menu a:hover {
    background-color: var(--primary);
    transform: translateY(-2px);
    border-color: var(--primary);
}

/* Hero Section */
.hero {
    background: var(--gradient-hero);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: 800;
    background: linear-gradient(to right, #60a5fa, #34d399);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 30px;
    color: var(--gray);
}

.date-badge {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 10px 25px;
    border-radius: 30px;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.live-clock {
    font-family: 'Courier New', monospace;
    font-weight: 700;
    color: var(--warning);
}

/* Section Titles */
.section-title {
    text-align: center;
    margin: 60px 0 40px;
    position: relative;
}

.section-title h2 {
    font-size: 2.2rem;
    color: white;
    display: inline-block;
    position: relative;
    z-index: 1;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(to right, var(--primary), var(--secondary));
    border-radius: 2px;
}

/* Cards Grid */
.card-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.card {
    background: var(--gradient-card);
    padding: 25px;
    border-radius: 16px;
    box-shadow: var(--card-shadow);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
}

.card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 20px 25px -5px rgba(37, 99, 235, 0.2);
}

.card h3 {
    font-size: 1.4rem;
    margin-bottom: 20px;
    color: white;
    display: flex;
    align-items: center;
    gap: 10px;
}

.card h3 i {
    color: var(--primary);
}

.price-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
}

.price-label {
    color: var(--gray);
    font-weight: 500;
}

.price-val {
    font-weight: 700;
    font-size: 1.1rem;
}

.buy { color: var(--secondary); }
.sell { color: var(--danger); }

.availability {
    font-size: 0.85rem;
    color: var(--gray);
    margin-top: 15px;
    display: flex;
    justify-content: space-between;
    background: rgba(0,0,0,0.2);
    padding: 8px;
    border-radius: 6px;
}

/* Top Up Games Section */
.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 20px;
    margin-bottom: 60px;
}

.game-card {
    background: var(--gradient-card);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
}

.game-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 30px rgba(0,0,0,0.4);
    border-color: var(--accent);
}

.game-img-wrapper {
    width: 100%;
    padding-top: 100%;
    position: relative;
    overflow: hidden;
}

.game-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.game-card:hover .game-img {
    transform: scale(1.1);
}

.game-info {
    padding: 15px;
    text-align: center;
}

.game-title {
    font-weight: 600;
    color: white;
    font-size: 0.95rem;
    margin-bottom: 5px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.game-badge {
    font-size: 0.7rem;
    background: rgba(245, 158, 11, 0.2);
    color: var(--warning);
    padding: 2px 8px;
    border-radius: 4px;
    font-weight: 600;
    display: inline-block;
}

/* Game Detail Page */
#game-detail-page {
    display: none;
    padding: 40px 0;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.detail-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
    background: var(--gradient-card);
    padding: 20px;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.1);
}

.detail-img {
    width: 100px;
    height: 100px;
    border-radius: 16px;
    object-fit: cover;
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}

.detail-title h2 {
    font-size: 2rem;
    color: white;
    margin-bottom: 5px;
}

.detail-title p {
    color: var(--gray);
}

.back-btn {
    background: rgba(255,255,255,0.1);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
    margin-bottom: 20px;
}

.back-btn:hover {
    background: var(--primary);
}

.price-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--gradient-card);
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 30px;
    border: 1px solid rgba(255,255,255,0.05);
}

.price-table th, .price-table td {
    padding: 15px 20px;
    text-align: left;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.price-table th {
    background: rgba(0,0,0,0.3);
    color: var(--gray);
    font-weight: 600;
    font-size: 0.9rem;
}

.price-table tr:hover {
    background: rgba(255,255,255,0.02);
}

.price-table tr.selected {
    background: rgba(37, 99, 235, 0.2);
    border-left: 3px solid var(--primary);
}

.price-table td:last-child {
    text-align: right;
    font-weight: 700;
    color: var(--secondary);
}

.price-table tr {
    cursor: pointer;
}

/* Order Form */
.order-form-container {
    background: var(--gradient-card);
    padding: 30px;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.05);
}

.order-form-container h3 {
    color: white;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.4rem;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--gray);
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 10px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    background-color: rgba(0,0,0,0.3);
    color: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.2);
}

.form-group input::placeholder {
    color: var(--gray);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.form-note {
    background: rgba(37, 99, 235, 0.1);
    border-left: 4px solid var(--primary);
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 0 8px 8px 0;
    font-size: 0.85rem;
    color: var(--gray);
}

.form-note ul {
    padding-left: 20px;
    margin-top: 8px;
}

.form-note li {
    margin-bottom: 5px;
}

.submit-btn {
    background: var(--gradient-form);
    color: white;
    border: none;
    padding: 16px 30px;
    border-radius: 10px;
    cursor: pointer;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.4);
}

.submit-btn i {
    font-size: 1.2rem;
}

.selected-item-display {
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid var(--secondary);
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 20px;
    display: none;
}

.selected-item-display.show {
    display: block;
}

.selected-item-display h4 {
    color: var(--secondary);
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.selected-item-display p {
    color: white;
    font-weight: 600;
}

/* Proxy Section */
.proxy-section {
    margin-bottom: 60px;
}

.proxy-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.proxy-card {
    background: var(--gradient-card);
    border-radius: 16px;
    padding: 30px;
    border: 1px solid rgba(255,255,255,0.05);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.proxy-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
}

.proxy-card.ipv4::before {
    background: var(--gradient-ipv4);
}

.proxy-card.ipv6::before {
    background: var(--gradient-ipv6);
}

.proxy-card.isp::before {
    background: var(--gradient-isp);
}

.proxy-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.proxy-card.ipv4:hover {
    border-color: #2563eb;
}

.proxy-card.ipv6:hover {
    border-color: #10b981;
}

.proxy-card.isp:hover {
    border-color: #8b5cf6;
}

.proxy-icon {
    width: 70px;
    height: 70px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 2rem;
    color: white;
}

.proxy-card.ipv4 .proxy-icon {
    background: var(--gradient-ipv4);
}

.proxy-card.ipv6 .proxy-icon {
    background: var(--gradient-ipv6);
}

.proxy-card.isp .proxy-icon {
    background: var(--gradient-isp);
}

.proxy-card h3 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.proxy-card .proxy-desc {
    color: var(--gray);
    font-size: 0.9rem;
    margin-bottom: 20px;
    line-height: 1.6;
}

.proxy-features {
    list-style: none;
    margin-bottom: 20px;
}

.proxy-features li {
    color: var(--gray);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
}

.proxy-features li i {
    color: var(--secondary);
    font-size: 0.8rem;
}

.proxy-price {
    background: rgba(0,0,0,0.3);
    padding: 15px;
    border-radius: 10px;
    text-align: center;
}

.proxy-price .price-label {
    color: var(--gray);
    font-size: 0.85rem;
    margin-bottom: 5px;
}

.proxy-price .price-value {
    color: white;
    font-size: 1.3rem;
    font-weight: 700;
}

.proxy-price .price-period {
    color: var(--gray);
    font-size: 0.8rem;
}

/* Proxy Order Page */
#proxy-order-page {
    display: none;
    padding: 40px 0;
    animation: fadeIn 0.5s ease;
}

.proxy-order-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
    background: var(--gradient-card);
    padding: 25px;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.1);
}

.proxy-order-icon {
    width: 80px;
    height: 80px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
}

.proxy-order-header h2 {
    color: white;
    font-size: 2rem;
    margin-bottom: 5px;
}

.proxy-order-header p {
    color: var(--gray);
}

.proxy-pricing-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--gradient-card);
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 30px;
    border: 1px solid rgba(255,255,255,0.05);
}

.proxy-pricing-table th, .proxy-pricing-table td {
    padding: 15px 20px;
    text-align: left;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.proxy-pricing-table th {
    background: rgba(0,0,0,0.3);
    color: var(--gray);
    font-weight: 600;
    font-size: 0.9rem;
}

.proxy-pricing-table tr:hover {
    background: rgba(255,255,255,0.02);
}

.proxy-pricing-table tr.selected {
    background: rgba(37, 99, 235, 0.2);
    border-left: 3px solid var(--primary);
}

.proxy-pricing-table td:last-child {
    text-align: right;
    font-weight: 700;
    color: var(--secondary);
}

.proxy-pricing-table tr {
    cursor: pointer;
}

.location-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 10px;
    margin-bottom: 20px;
}

.location-item {
    background: rgba(0,0,0,0.3);
    padding: 12px 15px;
    border-radius: 8px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid rgba(255,255,255,0.1);
}

.location-item:hover {
    background: rgba(37, 99, 235, 0.2);
    border-color: var(--primary);
}

.location-item.selected {
    background: rgba(37, 99, 235, 0.3);
    border-color: var(--primary);
}

.location-item i {
    display: block;
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.location-item span {
    font-size: 0.85rem;
    color: white;
}

/* Info Columns */
.info-columns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.info-card {
    background: var(--gradient-card);
    padding: 30px;
    border-radius: 16px;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.05);
    transition: all 0.3s;
}

.info-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
}

.info-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.5rem;
    color: white;
}

.info-card h3 {
    color: white;
    margin-bottom: 15px;
}

.info-card p, .info-card ul {
    color: var(--gray);
    font-size: 0.9rem;
    text-align: left;
}

.info-card ul {
    list-style: none;
    padding: 0;
}

.info-card ul li {
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.info-card ul li i {
    color: var(--secondary);
}

.info-card .game-badge {
    color: white !important;
}

/* Memperbesar ukuran badge metode pembayaran */
.info-card .game-badge {
    font-size: 1.2rem;        /* Ukuran teks lebih besar */
    padding: 5px 10px;        /* Ruang dalam lebih besar */
    min-width: 85px;          /* Lebar minimal agar seragam */
    text-align: center;
    display: inline-block;
    margin: 5px;
    border-radius: 8px;        /* opsional: sudut lebih membulat */
}

/* Footer */
footer {
    background: #020617;
    padding: 60px 0 20px;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h4 {
    color: white;
    margin-bottom: 20px;
    font-size: 1.2rem;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--primary);
    border-radius: 2px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col a {
    color: var(--gray);
    text-decoration: none;
    transition: color 0.3s;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-col a:hover {
    color: var(--primary);
}

.copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.05);
    color: var(--gray);
    font-size: 0.9rem;
}

/* Testimonial Carousel */
.testimonials-section {
    margin-bottom: 60px;
}

.testimonials-carousel-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    border-radius: 16px;
    box-shadow: var(--card-shadow);
    background: var(--dark-card);
    overflow: hidden;
}

.testimonials-carousel {
    overflow: hidden;
    width: 100%;
    aspect-ratio: 16 / 9;
}

.carousel-track {
    display: flex;
    height: 100%;
    transition: transform 0.5s ease-in-out;
}

.carousel-track img {
    width: 100%;
    height: 100%;
    flex-shrink: 0;
    object-fit: contain;
    background-color: var(--dark-card);
    user-select: none;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(15, 23, 42, 0.7);
    color: white;
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255,255,255,0.1);
    transition: all 0.3s ease;
}

.carousel-btn:hover {
    background: var(--primary);
    border-color: var(--primary);
}

.carousel-btn.prev {
    left: 15px;
}

.carousel-btn.next {
    right: 15px;
}

.carousel-dots {
    text-align: center;
    margin-top: 15px;
}

.dot {
    display: inline-block;
    width: 12px;
    height: 12px;
    background: var(--gray);
    border-radius: 50%;
    margin: 0 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: var(--primary);
    transform: scale(1.2);
}

/* Responsive */
@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        gap: 15px;
    }

    .menu {
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .detail-header,
    .proxy-order-header {
        flex-direction: column;
        text-align: center;
    }

    .games-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .location-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .testimonials-carousel {
        aspect-ratio: 4 / 3;
    }
    .carousel-btn {
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .location-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}