/* --- START: LOCALLY HOSTED FONTS (Cookie-Free) --- */
/* Files must be placed in the ./fonts/ directory */

/* Oxanium - 700 (Bold) */
@font-face {
    font-family: 'Oxanium';
    font-style: normal;
    font-weight: 700;
    src: url('./fonts/oxanium-v21-latin-700.woff2') format('woff2');
    font-display: swap;
}
/* Oxanium - 800 (ExtraBold) */
@font-face {
    font-family: 'Oxanium';
    font-style: normal;
    font-weight: 800;
    src: url('./fonts/oxanium-v21-latin-800.woff2') format('woff2');
    font-display: swap;
}
/* Inter - 400 (Regular) */
@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    src: url('./fonts/inter-v20-latin-regular.woff2') format('woff2');
    font-display: swap;
}
/* Inter - 500 (Medium) */
@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 500;
    src: url('./fonts/inter-v20-latin-500.woff2') format('woff2');
    font-display: swap;
}
/* Inter - 600 (SemiBold) */
@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 600;
    src: url('./fonts/inter-v20-latin-600.woff2') format('woff2');
    font-display: swap;
}
/* Inter - 700 (Bold) */
@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 700;
    src: url('./fonts/inter-v20-latin-700.woff2') format('woff2');
    font-display: swap;
}
/* --- END: LOCALLY HOSTED FONTS --- */

body {
    font-family: 'Inter', sans-serif;
}

h1, h2, h3, h4, h5, h6, .player-name {
    font-family: 'Oxanium', sans-serif;
}

.prose h2 {
    font-family: 'Oxanium', sans-serif;
}

.game-tag {
    display: inline-block;
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    font-size: 10px;
    font-weight: 600;
    padding: 0.125rem 0.5rem;
    border-radius: 9999px;
    margin-bottom: 0.25rem;
}

.btn-primary {
    background-color: #EA580C;
    color: white;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -2px rgba(0,0,0,0.1);
    transition: transform 0.15s;
    transform: scale(1);
}
.btn-primary:hover {
    transform: scale(1.05);
    background-color: #C2410C;
}

.btn-secondary {
    background-color: #2563EB;
    color: white;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -2px rgba(0,0,0,0.1);
    transition: transform 0.15s;
    transform: scale(1);
}
.btn-secondary:hover {
    transform: scale(1.05);
    background-color: #1D4ED8;
}

.btn-tertiary {
    background-color: rgba(31, 41, 55, 0.7);
    backdrop-filter: blur(4px);
    color: #D1D5DB;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    border: 1px solid #374151;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -2px rgba(0,0,0,0.1);
    transition: transform 0.15s;
    transform: scale(1);
}
.btn-tertiary:hover {
    transform: scale(1.05);
    background-color: rgba(55, 65, 81, 0.8);
}

.glass-card {
    background-color: rgba(31, 41, 55, 0.4);
    backdrop-filter: blur(16px);
    border: 1px solid #374151;
    border-radius: 1rem;
}

#services .glass-card {
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    will-change: transform;
}

.staff-frame {
    border: 1px solid #374151;
    background-color: rgba(31, 41, 55, 0.2);
    backdrop-filter: blur(8px);
    border-radius: 1rem;
    padding: 2rem;
}

.form-group {
    position: relative;
    text-align: left;
}
.form-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}
.form-icon-new {
    position: absolute;
    left: 1rem;
    width: 1.25rem;
    height: 1.25rem;
    color: #6B7280;
}
.form-icon-textarea {
    width: 1.5rem;
    height: 1.5rem;
    top: 1rem;
}
.form-input-new {
    width: 100%;
    background-color: rgba(17, 24, 39, 0.5);
    border: 2px solid #374151;
    border-radius: 0.5rem;
    padding: 0.75rem 1rem 0.75rem 3rem;
    color: white;
    transition: border-color 0.15s;
}
.form-input-new::placeholder {
    color: #6B7280;
}
.form-input-new:focus {
    outline: none;
    border-color: #F97316;
}
textarea.form-input-new {
    resize: none;
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
}

select.form-input-new {
    -webkit-appearance: none; 
    -moz-appearance: none;   
    appearance: none;        
    padding-right: 3rem;     
    cursor: pointer;
}

select.form-input-new:hover {
    border-color: #4B5563; 
}

select.form-input-new:focus {
    border-color: #F97316; 
    outline: none;
}

select.form-input-new option {
    background-color: #1F2937; 
    color: white; 
}

/* Urban Nav Link Style */
.nav-link-urban {
    position: relative;
    padding: 8px 4px;
    font-family: 'Oxanium', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 0.9rem;
    font-weight: 600;
    transition: color 0.3s;
}

.nav-link-urban::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background-color: #EA580C;
    transition: width 0.3s ease-out;
}

.nav-link-urban:hover {
    color: white;
}

.nav-link-urban:hover::after {
    width: 100%;
}

/* Swiper Arrow Customization */
.slider-arrow {
    background-color: rgba(31, 41, 55, 0.5);
    backdrop-filter: blur(4px);
    color: white;
    width: 44px;
    height: 44px;
    border-radius: 9999px;
    transition: all 0.3s ease;
}
.slider-arrow:hover {
    background-color: #EA580C;
    transform: scale(1.1);
}
.slider-arrow::after {
    font-size: 18px !important;
    font-weight: 900;
}
.swiper-button-prev {
    left: 0px;
}
.swiper-button-next {
    right: 0px;
}
@media (max-width: 640px) {
    .swiper-button-prev { left: -10px; }
    .swiper-button-next { right: -10px; }
}

/* Scrolling Animation for Partners */
@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}
.animate-scroll {
    animation: scroll 70s linear infinite;
    display: flex;
    width: max-content;
}

.partner-logo {
    height: 4.5rem; /* 72px */
    width: 9rem;    /* 144px */
    object-fit: contain;
    margin: 0 2.5rem; /* mx-10 */
    flex-shrink: 0;
    filter: grayscale(0%);
    opacity: 0.7;
    transition: filter 0.3s, opacity 0.3s;
}
.partner-logo:hover {
    filter: grayscale(0%);
    opacity: 1;
}

/* Testimonial Slider Styles */
#testimonial-slider figure {
    display: none;
    transition: opacity 0.5s ease-in-out;
    opacity: 0;
}
#testimonial-slider figure.active {
    display: block;
    opacity: 1;
}
.dots-container {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 2rem;
}
.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #4B5563; /* gray-600 */
    cursor: pointer;
    transition: background-color 0.3s, transform 0.3s;
}
.dot.active {
    background-color: #EA580C; /* orange-600 */
    transform: scale(1.2);
}

/* Custom Checkbox styles */
.form-group-checkbox {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 0.5rem;
}
.custom-checkbox {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 1.25rem;
    height: 1.25rem;
    border: 2px solid #374151;
    border-radius: 0.25rem;
    background-color: rgba(17, 24, 39, 0.5);
    cursor: pointer;
    position: relative;
    transition: background-color 0.2s, border-color 0.2s;
}
.custom-checkbox:focus {
    outline: none;
    border-color: #F97316;
}
.custom-checkbox:checked {
    background-color: #2563EB;
    border-color: #2563EB;
}
.custom-checkbox:checked::after {
    content: '';
    position: absolute;
    left: 6px;
    top: 2px;
    width: 6px;
    height: 12px;
    border: solid white;
    border-width: 0 3px 3px 0;
    transform: rotate(45deg);
}