body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background: #f5f5f7;
    min-height: 100vh;
    color: #1d1d1f;
}

.custom-container {
    max-width: 1400px;
}

/* Glassmorphism Styles */
.glass-nav {
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(40px) saturate(200%);
    -webkit-backdrop-filter: blur(40px) saturate(200%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
    z-index: 10;
}

.glass-card {
    background: rgba(255, 255, 255, 0.35);
    backdrop-filter: blur(40px) saturate(200%);
    -webkit-backdrop-filter: blur(40px) saturate(200%);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-top: 1px solid rgba(255, 255, 255, 0.8);
    border-left: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-radius: 28px;
}

/* Form Controls */
.form-control {
    background-color: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(0, 0, 0, 0.15);
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.05);
    font-weight: 500;
    color: #1d1d1f;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.form-control:focus {
    background-color: rgba(255, 255, 255, 0.9);
    border-color: rgba(0, 0, 0, 0.3);
    box-shadow: 0 0 0 4px rgba(0, 0, 0, 0.05), inset 0 1px 3px rgba(0, 0, 0, 0.05);
}

/* Remove up/down spinners for number inputs */
input[type=number]::-webkit-inner-spin-button, 
input[type=number]::-webkit-outer-spin-button { 
  -webkit-appearance: none; 
  margin: 0; 
}
input[type=number] {
    -moz-appearance: textfield;
}

.form-control[readonly],
.form-control[disabled] {
    background-color: rgba(0, 0, 0, 0.03);
}

/* Buttons */
.btn-custom {
    background-color: #0071e3;
    color: #ffffff;
    border-radius: 24px;
    font-weight: 500;
    transition: all 0.2s cubic-bezier(0.25, 0.8, 0.25, 1);
    border: none;
}

.btn-custom:hover {
    background-color: #0077ed;
    color: #ffffff;
    transform: scale(1.02);
}

/* Modals */
.modal-backdrop.show {
    background-color: rgba(0, 0, 0, 0.3) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

/* Back to Home Button Custom Style */
.btn-back-home {
    background-color: rgba(255,255,255,0.5);
    border: 1px solid #212529;
    color: #212529;
    transition: all 0.2s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.btn-back-home:hover {
    background-color: #ffffff;
    color: #212529;
    transform: scale(1.02);
}

/* Utilities for replacing inline styles */
.avatar-sm { width: 35px; height: 35px; }
.avatar-md { width: 40px; height: 40px; }
.avatar-lg { width: 120px; height: 120px; }
.icon-btn-md { width: 45px; height: 45px; }
.icon-btn-lg { width: 80px; height: 80px; }
.mw-150 { max-width: 150px; }
.mw-300 { max-width: 300px; }
.mw-400 { max-width: 400px; }
.letter-spacing-sm { letter-spacing: 0.5px; }
.letter-spacing-md { letter-spacing: -0.5px; }
.letter-spacing-lg { letter-spacing: -1px; }

/* Custom Components */
.modal-glass-content { border-radius: 28px; }
.btn-buy-now { font-size: 1.1rem; }
.artist-name-max { max-width: 100px; font-size: 0.85rem; }
.artist-subtitle-max { max-width: 100px; font-size: 0.7rem; }
.description-text { line-height: 1.6; font-size: 0.95rem; }
.h-250 { height: 250px; }
.text-brand { color: #0071e3; }
.border-glass { border-color: rgba(255,255,255,0.8) !important; }
.pre-line { white-space: pre-line; }

/* Auth Pages Specific */
/* Glass Pagination */
.pagination .page-link {
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    color: #202020;
    font-weight: 600;
    transition: all 0.3s ease;
}

.pagination .page-link.rounded-circle {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.pagination .page-item:not(.active):not(.disabled) .page-link:hover {
    background: rgba(255, 255, 255, 0.7);
    transform: translateY(-2px);
}

.pagination .page-item.active .page-link {
    background: #202020 !important;
    border-color: #202020 !important;
    color: #ffffff !important;
    box-shadow: 0 4px 15px rgba(32, 32, 32, 0.3);
}

.pagination .page-item.disabled .page-link {
    background: rgba(255, 255, 255, 0.2);
    color: rgba(32, 32, 32, 0.4);
    border-color: rgba(255, 255, 255, 0.3);
}

/* Tickets Selection */
.ticket-card {
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    background-color: rgba(255, 255, 255, 0.5);
}

.ticket-card:hover {
    border-color: #202020;
    transform: translateY(-3px);
}

.ticket-card.selected {
    border-color: #202020;
    background-color: rgba(255, 255, 255, 0.9);
}

/* Others */
.hover-shadow-custom {
    transition: box-shadow 0.3s ease;
}

.hover-shadow-custom:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15) !important;
}

/* Interactive Components */
.interactive-card {
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.interactive-card:hover {
    transform: translateY(-6px) scale(1.01);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12) !important;
    border-color: rgba(255, 255, 255, 0.9) !important;
}

.artist-item {
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    border-radius: 12px;
    padding: 8px;
    margin: -8px;
    cursor: pointer;
}

.artist-item:hover {
    background-color: rgba(255, 255, 255, 0.3);
    transform: translateX(6px);
}

/* =========================================================================
   RESPONSIVE (LAPTOP, TABLET, MOBILE)
   ========================================================================= */

/* Laptops / smaller desktops */
@media (max-width: 1199px) {
    .custom-container {
        padding-left: 2rem;
        padding-right: 2rem;
    }
}

/* Tablets */
@media (max-width: 991px) {
    .upcoming-concerts-wrapper > .upcoming-concert-item:nth-child(n+7) {
        display: none !important;
    }
    .hero-card {
        min-height: 250px;
    }
    .custom-container {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
    .display-4 {
        font-size: 3rem;
    }
    .display-5 {
        font-size: 2.5rem;
    }
}

/* Mobile Devices */
@media (max-width: 767px) {
    .upcoming-concerts-wrapper > .upcoming-concert-item:nth-child(n+5) {
        display: none !important;
    }
    .hero-card {
        min-height: 220px;
    }
    .h-250 {
        height: 200px;
    }
    .glass-card {
        border-radius: 20px;
    }
    .modal-glass-content {
        border-radius: 20px;
    }
    .btn-buy-now {
        font-size: 1rem;
        padding: 12px !important;
    }
    .display-4 {
        font-size: 2.2rem;
    }
    .display-5 {
        font-size: 1.8rem;
    }
    .hero-gradient {
        opacity: 0.85;
    }
    .custom-container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    .navbar-brand {
        font-size: 1.25rem !important;
    }
    .mw-150 {
        max-width: 120px;
    }
    .mw-300 {
        max-width: 100%;
    }
    .mw-400 {
        max-width: 100%;
    }
    .pre-line {
        font-size: 0.9rem;
    }
}

/* Small Mobile */
@media (max-width: 575px) {
    .hero-card {
        min-height: 180px;
    }
    .display-4 {
        font-size: 1.8rem;
    }
    .display-5 {
        font-size: 1.5rem;
    }
    .h-250 {
        height: 180px;
    }
    .btn-custom, .btn-back-home {
        font-size: 0.9rem;
        padding: 10px !important;
    }
}