/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    width: 100%;
    overflow-x: hidden;
}

body {
    font-family: 'Roboto Condensed', 'Oswald', -apple-system, BlinkMacSystemFont, sans-serif;
    background: #000;
    color: #fff;
    line-height: 1.4;
    overflow-x: hidden;
    font-weight: 400;
    letter-spacing: 0.5px;
    width: 100%;
    min-width: 320px;
    position: relative;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    width: 100%;
    box-sizing: border-box;
}

/* Global Background */
.global-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -100;
}

.global-bg-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(0.3) contrast(1.2);
}

.global-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(0, 0, 0, 0.85) 0%,
        rgba(0, 0, 0, 0.7) 30%,
        rgba(0, 0, 0, 0.8) 70%,
        rgba(0, 0, 0, 0.9) 100%);
}

/* Floating Trionda Elements - Remove Trionda_3 */
.trionda-elements {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -50;
}

.trionda-float {
    position: absolute;
    opacity: 0.1;
    filter: blur(1px);
    animation: float 20s ease-in-out infinite;
}

.trionda-1 {
    top: 10%;
    right: 5%;
    width: 200px;
    animation-delay: 0s;
}

.trionda-2 {
    bottom: 20%;
    left: 3%;
    width: 150px;
    animation-delay: -7s;
}

/* Remove trionda-3 styles */

@keyframes float {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg);
        opacity: 0.05;
    }
    25% { 
        transform: translateY(-30px) rotate(90deg);
        opacity: 0.15;
    }
    50% { 
        transform: translateY(-60px) rotate(180deg);
        opacity: 0.1;
    }
    75% { 
        transform: translateY(-30px) rotate(270deg);
        opacity: 0.08;
    }
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.navbar:hover {
    background: rgba(0, 0, 0, 0.98);
    border-bottom-color: rgba(255, 255, 255, 0.2);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 30px;
    height: 80px;
}

.nav-logo .logo {
    height: 45px;
    width: auto;
    filter: brightness(1.1);
    transition: all 0.3s ease;
}

.nav-logo .logo:hover {
    filter: brightness(1.3);
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    gap: 50px;
    align-items: center;
}

.nav-link {
    color: #ccc;
    text-decoration: none;
    font-weight: 500;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.4s ease;
    position: relative;
    padding: 8px 0;
}

.nav-link:hover,
.nav-link.active {
    color: #fff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.nav-link::after {
    display: none;
}

/* User Menu */
.nav-user {
    position: relative;
}

.user-menu {
    position: relative;
    cursor: pointer;
    padding: 10px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.user-menu:hover {
    background: rgba(255, 255, 255, 0.1);
}

.user-icon {
    width: 28px;
    height: 28px;
    color: #ccc;
    transition: all 0.3s ease;
}

.user-icon:hover {
    color: #fff;
    filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.3));
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-15px);
    transition: all 0.4s ease;
    margin-top: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.dropdown-menu.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    display: block;
    padding: 15px 20px;
    color: #ccc;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    border-radius: 8px;
    margin: 5px;
}

.dropdown-item:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    transform: translateX(5px);
}

/* Mobile Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    padding: 10px;
}

.hamburger span {
    width: 28px;
    height: 2px;
    background: #fff;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.hamburger:hover span {
    background: #ccc;
}

/* Main Content */
.main-content {
    margin-top: 80px;
}

.section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 100px 0;
}

.section-title {
    font-size: 4rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 4rem;
    background: linear-gradient(135deg, #fff 0%, #ccc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    animation: titleGlow 3s ease-in-out infinite alternate;
}

@keyframes titleGlow {
    0% { filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.2)); }
    100% { filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.4)); }
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #fff, transparent);
    transform: translateX(-50%);
    animation: lineGlow 2s ease-in-out infinite alternate;
}

@keyframes lineGlow {
    0% { box-shadow: 0 0 5px rgba(255, 255, 255, 0.3); }
    100% { box-shadow: 0 0 15px rgba(255, 255, 255, 0.6); }
}

/* Hero Section */
.hero-section {
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    background: rgba(0, 0, 0, 0.2); /* More transparent for first section */
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 60px;
    align-items: center;
    max-width: 1400px;
    width: 100%;
    z-index: 10;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.hero-main {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    background: rgba(0, 0, 0, 0.3); /* Light transparency for text readability */
    padding: 40px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.hero-ball-container {
    position: relative;
    margin-bottom: 3rem;
    display: inline-block;
}

.hero-ball {
    width: 250px;
    height: 250px;
    object-fit: contain;
    animation: heroFloat 4s ease-in-out infinite;
    filter: drop-shadow(0 0 30px rgba(255, 255, 255, 0.2));
}

.ball-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    animation: glowPulse 3s ease-in-out infinite alternate;
    pointer-events: none;
}

@keyframes heroFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

@keyframes glowPulse {
    0% { opacity: 0.3; transform: translate(-50%, -50%) scale(1); }
    100% { opacity: 0.6; transform: translate(-50%, -50%) scale(1.1); }
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.title-line {
    display: block;
    animation: slideInLeft 1s ease-out forwards;
    opacity: 0;
}

.title-line:nth-child(1) { animation-delay: 0.2s; }
.title-line:nth-child(2) { animation-delay: 0.4s; }

.title-line.highlight {
    background: linear-gradient(135deg, #fff 0%, #00ff88 50%, #fff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 10px rgba(0, 255, 136, 0.3));
}

@keyframes slideInLeft {
    0% { opacity: 0; transform: translateX(-50px); }
    100% { opacity: 1; transform: translateX(0); }
}

.hero-text {
    margin-bottom: 2rem;
    font-size: 1.3rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    line-height: 1.8;
}

.hero-text p {
    margin-bottom: 1.5rem;
    color: #fff;
}

.hero-cta {
    color: #00ff88;
    font-weight: 700;
    font-size: 1.5rem;
    text-shadow: 0 0 10px rgba(0, 255, 136, 0.3);
}

/* Premium FIFA-Style Ticket */
.premium-ticket {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 20px;
    padding: 0;
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
    max-width: 450px;
    animation: ticketFloat 6s ease-in-out infinite;
    transform-style: preserve-3d;
}

@keyframes ticketFloat {
    0%, 100% { transform: translateY(0px) rotateY(0deg); }
    50% { transform: translateY(-10px) rotateY(2deg); }
}

.ticket-header {
    background: linear-gradient(135deg, #000 0%, #111 100%);
    color: #fff;
    padding: 25px 30px;
    display: flex;
    align-items: center;
    gap: 20px;
    border-radius: 20px 20px 0 0;
}

.ticket-logo img {
    height: 35px;
    filter: brightness(1.2);
}

.ticket-event h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 5px;
    letter-spacing: 0.5px;
}

.ticket-event p {
    font-size: 0.9rem;
    color: #ccc;
    font-weight: 400;
}

.ticket-body {
    padding: 40px 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #000;
    background: #fff;
}

.ticket-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.info-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    
}

.info-row:last-child {
    border-bottom: none;
}

.label {
    font-size: 0.8rem;
    font-weight: 600;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    min-width: 120px;
}

.value {
    font-size: 0.9rem;
    font-weight: 700;
    color: #000;
    text-align: right;
    letter-spacing: 0.3px;
}

.ticket-qr {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.qr-image {
    width: 120px;
    height: 120px;
    border-radius: 8px;
    margin-bottom: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.ticket-qr p {
    font-size: 0.7rem;
    font-weight: 600;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.ticket-footer {
    background: #f8f9fa;
    padding: 20px 30px;
    text-align: center;
    border-radius: 0 0 20px 20px;
}

.ticket-footer p {
    font-size: 0.7rem;
    color: #666;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.ticket-perforation {
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    height: 2px;
    background: repeating-linear-gradient(
        90deg,
        transparent 0px,
        transparent 8px,
        #ddd 8px,
        #ddd 12px
    );
    transform: translateY(-50%);
}

/* Location Section */
.location-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
    width: 100%;
}

.location-info-centered {
    text-align: center;
    max-width: 600px;
}

.location-info-centered h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #fff;
}

.location-info-centered .location-address {
    font-size: 1.1rem;
    color: #ccc;
    margin-bottom: 20px;
}

.location-info-centered .location-phrase {
    font-size: 1rem;
    color: #ddd;
    margin-bottom: 30px;
}

.location-info-centered .location-images {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.location-info h3 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #fff;
    font-weight: 700;
    letter-spacing: 1px;
}

.location-address {
    font-size: 1.1rem;
    color: #ccc;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.location-phrase {
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.location-images {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 2rem;
}

.location-icon {
    width: 80px;
    height: 80px;
    object-fit: contain;
    border-radius: 10px;
}

.location-photo {
    width: 100%;
    max-width: 300px;
    height: 200px;
    object-fit: contain;
    border-radius: 15px;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.location-card {
    background: rgba(0, 0, 0, 0.8); /* Darker transparency for other sections */
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
    text-align: left;
}

.location-card:hover {
    background: rgba(0, 0, 0, 0.85);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.location-photo {
    width: 100%;
    max-width: 300px;
    height: 200px;
    object-fit: contain;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.location-details {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.detail {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.1rem;
    color: #fff;
    font-weight: 500;
}

.detail svg {
    width: 24px;
    height: 24px;
    color: #00ff88;
}

.map-container {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transition: all 0.4s ease;
}

.map-container:hover {
    transform: scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
}

/* Dress Code Section */
.dress-code-content {
    max-width: 1000px;
    width: 100%;
}

.dress-code-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.dress-item {
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.dress-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.6s ease;
}

.dress-item:hover::before {
    left: 100%;
}

.dress-item:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.dress-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    filter: grayscale(0);
}

.dress-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #fff;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.dress-item p {
    color: #ccc;
    font-size: 1.1rem;
    line-height: 1.5;
}

/* Timeline/Agenda Section */
.timeline {
    max-width: 800px;
    width: 100%;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, #00ff88, #fff, #00ff88);
    box-shadow: 0 0 10px rgba(0, 255, 136, 0.3);
}

.timeline-item {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
    position: relative;
    animation: slideInRight 0.6s ease-out forwards;
    opacity: 0;
}

.timeline-item:nth-child(1) { animation-delay: 0.1s; }
.timeline-item:nth-child(2) { animation-delay: 0.2s; }
.timeline-item:nth-child(3) { animation-delay: 0.3s; }
.timeline-item:nth-child(4) { animation-delay: 0.4s; }

@keyframes slideInRight {
    0% { opacity: 0; transform: translateX(50px); }
    100% { opacity: 1; transform: translateX(0); }
}

.timeline-time {
    width: 100px;
    font-size: 1.5rem;
    font-weight: 700;
    color: #00ff88;
    text-align: center;
    background: rgba(0, 255, 136, 0.1);
    border: 2px solid #00ff88;
    border-radius: 50px;
    padding: 10px;
    position: relative;
    z-index: 2;
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.2);
}

.timeline-content {
    margin-left: 40px;
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(20px);
    border-radius: 15px;
    padding: 25px 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    flex: 1;
    transition: all 0.4s ease;
}

.timeline-content:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateX(10px);
}

.timeline-content h3 {
    font-size: 1.3rem;
    margin-bottom: 8px;
    color: #fff;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.timeline-content p {
    color: #ccc;
    font-size: 1rem;
    line-height: 1.5;
}

/* Services Section */
.services-premium {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    width: 100%;
}

.service-card {
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.service-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #00ff88, #fff, #00ff88);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.service-card:hover::after {
    transform: scaleX(1);
}

.service-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
}

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #fff;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.service-card p {
    color: #ccc;
    font-size: 1rem;
    line-height: 1.6;
}

/* Gallery Section */
.gallery-premium {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 20px;
    width: 100%;
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    aspect-ratio: 1;
    cursor: pointer;
    transition: all 0.4s ease;
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
}

.gallery-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(0, 255, 136, 0.2), rgba(255, 255, 255, 0.1));
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 2;
}

.gallery-item:hover::before {
    opacity: 1;
}

.gallery-item:hover {
    transform: scale(1.05) rotate(1deg);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: all 0.4s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* Upload Section */
.upload-premium {
    max-width: 700px;
    width: 100%;
}

.upload-area {
    border-radius: 20px;
    padding: 60px 40px;
    text-align: center;
    transition: all 0.4s ease;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.upload-area::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 136, 0.1), transparent);
    transition: left 0.6s ease;
}

.upload-area:hover::before {
    left: 100%;
}

.upload-area:hover {
    border-color: #00ff88;
    background: rgba(0, 255, 136, 0.05);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 255, 136, 0.1);
}

.upload-icon {
    width: 60px;
    height: 60px;
    color: #666;
    margin-bottom: 2rem;
    transition: all 0.4s ease;
}

.upload-area:hover .upload-icon {
    color: #00ff88;
    transform: scale(1.1);
}

.upload-area h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #fff;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.upload-area p {
    color: #ccc;
    margin-bottom: 2rem;
    font-size: 1.1rem;
    line-height: 1.5;
}

.upload-btn {
    background: linear-gradient(135deg, #00ff88, #fff);
    color: #000;
    border: none;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.4s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 10px 20px rgba(0, 255, 136, 0.2);
}

.upload-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 255, 136, 0.3);
    filter: brightness(1.1);
}

/* User Sections */
.user-section {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(20px);
}

.profile-premium,
.config-premium {
    max-width: 800px;
    width: 100%;
}

.profile-card,
.config-card {
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 50px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
}

.profile-card:hover,
.config-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.profile-card h3,
.config-card h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #fff;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.profile-card p,
.config-card p {
    font-size: 1.2rem;
    color: #ccc;
    line-height: 1.6;
}
/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }
    
    .hero-main {
        text-align: center;
    }
    
    .premium-ticket {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .location-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .timeline::before {
        left: 30px;
    }
    
    .timeline-time {
        width: 80px;
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: rgba(0, 0, 0, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 50px;
        transition: left 0.4s ease;
        gap: 30px;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-link {
        font-size: 1.4rem;
        padding: 15px 0;
    }

    .container {
        padding: 0 20px;
    }

    .nav-container {
        padding: 0 20px;
    }

    .section {
        padding: 80px 0;
    }

    .section-title {
        font-size: 2.5rem;
        margin-bottom: 3rem;
    }

    .hero-title {
        font-size: 3rem;
    }

    .hero-ball {
        width: 180px;
        height: 180px;
    }

    .ball-glow {
        width: 220px;
        height: 220px;
    }

    .premium-ticket {
        max-width: 350px;
    }

    .ticket-body {
        grid-template-columns: 1fr;
        gap: 20px;
        text-align: center;
    }

    .qr-image {
        width: 100px;
        height: 100px;
    }

    .dress-code-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .services-premium {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .gallery-premium {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 15px;
    }

    .timeline {
        max-width: 100%;
    }

    .timeline::before {
        left: 20px;
    }

    .timeline-time {
        width: 60px;
        font-size: 1rem;
        padding: 8px;
    }

    .timeline-content {
        margin-left: 30px;
        padding: 20px;
    }

    .trionda-1 {
        width: 120px;
        top: 15%;
        right: 2%;
    }

    .trionda-2 {
        width: 100px;
        bottom: 25%;
        left: 1%;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .nav-container {
        padding: 0 15px;
        height: 70px;
    }

    .main-content {
        margin-top: 70px;
    }

    .navbar {
        height: 70px;
    }

    .nav-menu {
        top: 70px;
        height: calc(100vh - 70px);
    }

    .section-title {
        font-size: 2rem;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-ball {
        width: 150px;
        height: 150px;
    }

    .ball-glow {
        width: 180px;
        height: 180px;
    }

    .premium-ticket {
        max-width: 320px;
    }

    .ticket-header {
        padding: 20px;
    }

    .ticket-body {
        padding: 20px;
    }

    .ticket-footer {
        padding: 15px 20px;
    }

    .location-card,
    .dress-item,
    .service-card,
    .profile-card,
    .config-card {
        padding: 30px 20px;
    }

    .upload-area {
        padding: 40px 20px;
    }

    .timeline-content {
        margin-left: 20px;
        padding: 15px;
    }

    .timeline-time {
        width: 50px;
        font-size: 0.9rem;
        padding: 6px;
    }

    .hero-text {
        font-size: 1.1rem;
    }

    .hero-date {
        font-size: 1.3rem;
    }
}

/* Advanced Animations */
@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    0% {
        opacity: 0;
        transform: translateX(-30px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    0% {
        opacity: 0;
        transform: translateX(30px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Scroll Animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Loading Animation */
body.loading {
    overflow: hidden;
}

.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

.loading-screen.fade-out {
    opacity: 0;
    pointer-events: none;
}

.loading-ball {
    width: 80px;
    height: 80px;
    background-image: url('Trionda_Ball.png');
    background-size: contain;
    background-repeat: no-repeat;
    animation: loadingSpin 2s linear infinite;
}

@keyframes loadingSpin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #00ff88, #fff);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #fff, #00ff88);
}

/* Selection */
::selection {
    background: rgba(0, 255, 136, 0.3);
    color: #fff;
}

::-moz-selection {
    background: rgba(0, 255, 136, 0.3);
    color: #fff;
}
/* Loading Animation - Smaller and with shadow */
.loading-ball {
    width: 50px;
    height: 50px;
    background-image: url('Trionda_Ball.png');
    background-size: contain;
    background-repeat: no-repeat;
    animation: loadingSpin 2s linear infinite;
    filter: drop-shadow(0 5px 10px rgba(0, 0, 0, 0.5));
}

/* Ticket Description Container - New separate white container */
.ticket-description-container {
    background: #fff;
    color: #333;
    padding: 40px 30px;
    border-radius: 15px;
    max-width: 450px;
    width: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    line-height: 1.6;
}

.ticket-description-container p {
    margin-bottom: 15px;
}

.ticket-description-container p:last-child {
    margin-bottom: 0;
    font-weight: 600;
}

/* Ticket Description */
.ticket-description {
    background: #f8f9fa;
    padding: 25px 30px;
    color: #333;
    font-size: 0.9rem;
    line-height: 1.6;
    border-radius: 0 0 20px 20px;
}

.ticket-description p {
    margin-bottom: 15px;
}

.ticket-description p:last-child {
    margin-bottom: 0;
    font-weight: 600;
}

/* Menu Section */
.menu-section {
    margin-top: 4rem;
    text-align: center;
}

.menu-section h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #fff;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    max-width: 800px;
    margin: 0 auto;
}

.menu-item {
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 10px;
    padding: 15px 20px;
    color: #fff;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.menu-item:hover {
    background: rgba(0, 255, 136, 0.1);
    border-color: #00ff88;
    transform: translateY(-2px);
}

/* Horizontal Gallery */
.gallery-horizontal {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
}

.gallery-main {
    width: 100%;
    height: 500px;
    border-radius: 15px;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
}

.main-image-container {
    width: 100%;
    height: 100%;
    position: relative;
}

.main-image-container img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: all 0.4s ease;
}

.gallery-thumbnails {
    width: 100%;
    height: 120px;
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 10px;
    padding: 15px;
    overflow: hidden;
}

.thumbnails-container {
    display: flex;
    gap: 10px;
    height: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    padding-bottom: 10px;
}

.thumbnails-container::-webkit-scrollbar {
    height: 6px;
}

.thumbnails-container::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
}

.thumbnails-container::-webkit-scrollbar-thumb {
    background: linear-gradient(90deg, #00ff88, #fff);
    border-radius: 3px;
}

.thumbnail-item {
    min-width: 90px;
    height: 90px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.thumbnail-item:hover {
    transform: scale(1.02);
    border-color: rgba(255, 255, 255, 0.3);
}

.thumbnail-item.active {
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: none;
}

.thumbnail-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Configuration Form */
.config-premium {
    max-width: 800px;
    width: 100%;
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
}

.config-header {
    background: rgba(0, 0, 0, 0.3);
    padding: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.config-header h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #fff;
    font-weight: 600;
}

.config-tabs {
    display: flex;
    gap: 10px;
}

.tab-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ccc;
    padding: 10px 20px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.tab-btn.active,
.tab-btn:hover {
    background: rgba(0, 255, 136, 0.2);
    border-color: #00ff88;
    color: #fff;
}

.config-content {
    padding: 30px;
}

.profile-section h4 {
    font-size: 1.2rem;
    margin-bottom: 25px;
    color: #ccc;
    font-weight: 500;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 0.9rem;
    font-weight: 600;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group input {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: 12px 15px;
    color: #fff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: #00ff88;
    background: rgba(0, 255, 136, 0.1);
}

.form-group input[readonly] {
    background: rgba(0, 0, 0, 0.2);
    color: #ccc;
    cursor: not-allowed;
}

.form-actions {
    display: flex;
    gap: 15px;
    justify-content: flex-end;
}

.btn-save,
.btn-cancel {
    padding: 12px 25px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.btn-save {
    background: linear-gradient(135deg, #00ff88, #fff);
    color: #000;
}

.btn-save:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 255, 136, 0.3);
}

.btn-cancel {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-cancel:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}
/* Menu Text */
.menu-text {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.menu-text p {
    color: #ccc;
    font-size: 1.1rem;
    line-height: 1.8;
    font-weight: 400;
}

/* Dress Code Gallery */
.dress-code-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.dress-code-gallery {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.dress-code-text {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    line-height: 1.6;
}

.dress-code-text p {
    margin-bottom: 10px;
}

/* Gallery Placeholder Images */
.placeholder-image {
    width: 100%;
    height: 100%;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    transition: background-color 0.3s ease;
}

.placeholder-image span {
    color: #666;
    font-size: 0.7rem;
    font-weight: 500;
}

.placeholder-image:hover {
    background: #333;
}

.placeholder-image:hover span {
    color: #999;
}

/* Horizontal Gallery - Centered with margins */
.gallery-horizontal {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.gallery-main {
    width: 100%;
    height: 500px;
    border-radius: 15px;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    cursor: pointer;
}

.main-image-container {
    width: 100%;
    height: 100%;
    position: relative;
}

.main-image-container img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: all 0.4s ease;
}

.gallery-thumbnails {
    width: 100%;
    height: 120px;
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 10px;
    padding: 15px;
    overflow: hidden;
}

@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
        padding: 0 20px;
    }
    
    .hero-main {
        text-align: center;
    }
    
    .gallery-horizontal {
        padding: 0 20px;
    }
}

@media (max-width: 768px) {
    .hero-content {
        padding: 0 15px;
    }
    
    .gallery-horizontal {
        padding: 0 15px;
    }
    
    .gallery-main {
        height: 300px;
    }
}
/* Agenda Section */
.agenda-content {
    max-width: 900px;
    width: 100%;
}

.agenda-item {
    display: flex;
    align-items: flex-start;
    padding: 2rem;
    margin-bottom: 1.5rem;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 15px;
    border-left: 4px solid #00ff88;
    border: 1px solid rgba(100, 100, 100, 0.3);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.agenda-item:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.time {
    font-size: 1.1rem;
    font-weight: 700;
    color: #00ff88;
    min-width: 140px;
    text-align: center;
    background: rgba(0, 255, 136, 0.1);
    border: 2px solid #00ff88;
    border-radius: 25px;
    padding: 12px 8px;
    margin-right: 2rem;
    box-shadow: 0 0 15px rgba(0, 255, 136, 0.2);
}

.activity {
    flex: 1;
}

.activity h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color: #fff;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.activity p {
    color: #ccc;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 768px) {
    .agenda-item {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }
    
    .time {
        margin-right: 0;
        margin-bottom: 1rem;
        min-width: auto;
        width: fit-content;
        align-self: center;
    }
    
    .activity h3 {
        font-size: 1.2rem;
    }
    
    .activity p {
        font-size: 0.9rem;
    }
}
/* Mobile Responsive Fixes */
@media (max-width: 768px) {
    body {
        min-width: 320px;
        width: 100vw;
        position: relative;
    }
    
    .container {
        padding: 0 15px;
        width: 100%;
        max-width: 100%;
    }

    .section {
        padding: 60px 0;
        width: 100%;
        min-width: 320px;
    }

    .hero-title {
        font-size: 2.8rem;
        line-height: 1.2;
    }

    .hero-main {
        padding: 30px 20px;
        width: 100%;
        max-width: 100%;
    }

    .hero-text {
        font-size: 1.1rem;
    }

    .location-images {
        align-items: flex-start;
    }

    .trionda-1 {
        width: 120px;
        top: 15%;
        right: 2%;
    }

    .trionda-2 {
        width: 100px;
        bottom: 25%;
        left: 1%;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 10px;
        width: 100%;
    }

    .hero-main {
        padding: 20px 15px;
    }

    .hero-text {
        font-size: 1rem;
    }

    .location-photo {
        max-width: 100%;
    }
}
/* Ticket Section */
.ticket-section {
    padding: 80px 0;
    background: rgba(0, 0, 0, 0.8); /* Darker transparency for other sections */
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.ticket-section .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

/* Other sections with darker transparency */
.section:not(.hero-section) {
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
}

/* Mobile Viewport Fix */
html {
    width: 100%;
    overflow-x: hidden;
}

body {
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
    position: relative;
}

/* Ensure all containers are properly centered */
.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    box-sizing: border-box;
}

/* Fix mobile centering issues */
@media (max-width: 768px) {
    html {
        width: 100%;
        overflow-x: hidden;
    }
    
    body {
        width: 100%;
        max-width: 100vw;
        overflow-x: hidden;
        position: relative;
        margin: 0;
        padding: 0;
    }
    
    .container {
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
        padding: 0 15px;
        box-sizing: border-box;
        position: relative;
        left: 0;
        right: 0;
    }
    
    .section {
        width: 100%;
        max-width: 100vw;
        overflow-x: hidden;
        position: relative;
        margin: 0;
        padding: 0;
    }
    
    .hero-content {
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
        padding: 0 15px;
        box-sizing: border-box;
        position: relative;
        left: 0;
        right: 0;
    }
    
    .hero-main {
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
        box-sizing: border-box;
        position: relative;
        left: 0;
        right: 0;
    }
    
    .premium-ticket {
        width: 100%;
        max-width: 350px;
        margin: 0 auto;
        position: relative;
        left: 0;
        right: 0;
    }
    
    .location-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .location-images {
        flex-direction: row;
        align-items: center;
        gap: 15px;
    }
    
    .location-photo {
        max-width: 200px;
        height: 120px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 10px;
        width: 100%;
        max-width: 100%;
        position: relative;
        left: 0;
        right: 0;
        margin: 0 auto;
    }
    
    .hero-main {
        padding: 20px 10px;
        width: 100%;
        max-width: 100%;
        position: relative;
        left: 0;
        right: 0;
        margin: 0 auto;
    }
    
    .premium-ticket {
        max-width: 320px;
        width: 100%;
        position: relative;
        left: 0;
        right: 0;
        margin: 0 auto;
    }
    
    .location-images {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .location-photo {
        max-width: 100%;
        height: 150px;
    }
}

/* Additional mobile viewport fixes */
@media screen and (max-width: 768px) {
    * {
        box-sizing: border-box;
    }
    
    html {
        width: 100vw;
        overflow-x: hidden;
        -webkit-text-size-adjust: 100%;
        -ms-text-size-adjust: 100%;
    }
    
    body {
        width: 100vw;
        overflow-x: hidden;
        margin: 0;
        padding: 0;
        position: relative;
        min-width: 320px;
        max-width: 100vw;
    }
    
    .main-content {
        width: 100%;
        overflow-x: hidden;
        position: relative;
    }
    
    .section {
        width: 100%;
        overflow-x: hidden;
        position: relative;
        margin: 0;
        padding: 60px 0;
    }
    
    .container {
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
        padding: 0 15px;
        position: relative;
        overflow-x: hidden;
    }
}

/* Prevent horizontal scroll on all screen sizes */
html, body {
    max-width: 100vw;
    overflow-x: hidden;
}

.main-content {
    width: 100%;
    overflow-x: hidden;
}
/* Layout improvements for better centering */
.agenda-content {
    max-width: 900px;
    margin: 0 auto;
}

.services-premium {
    max-width: 800px;
    margin: 0 auto;
}

.dress-code-content {
    max-width: 1000px;
    margin: 0 auto;
}

.gallery-horizontal {
    max-width: 1000px;
    margin: 0 auto;
}

/* Ensure all containers are properly centered */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
    width: 100%;
    box-sizing: border-box;
}

/* Location icon centering */
.location-icon {
    width: 80px;
    height: 80px;
    border-radius: 10px;
    display: block;
    margin: 0 auto;
}
/* v1.1 */

/* Remove any borders from ticket info rows */
.info-row {
    border: none !important;
    border-bottom: none !important;
}

.ticket-info .info-row {
    border: none !important;
}

/* Specifically target ID row to remove dashed line */
.info-row:has(.ticket-id),
.info-row:nth-child(3) {
    border: none !important;
    border-bottom: none !important;
    border-top: none !important;
}

.info-row:has(.ticket-id)::before,
.info-row:has(.ticket-id)::after,
.info-row:nth-child(3)::before,
.info-row:nth-child(3)::after {
    display: none !important;
    border: none !important;
}

.ticket-id {
    border: none !important;
}

/* NUCLEAR OPTION: Remove ALL possible borders from ID area */
.ticket-info .info-row:nth-child(3),
.ticket-info .info-row:nth-child(3) *,
.ticket-info .info-row:nth-child(3)::before,
.ticket-info .info-row:nth-child(3)::after {
    border: none !important;
    border-top: none !important;
    border-bottom: none !important;
    border-left: none !important;
    border-right: none !important;
    outline: none !important;
    box-shadow: none !important;
}

/* Also target by content */
.info-row:has([class*="ticket-id"]) {
    border: none !important;
    border-bottom: none !important;
}

/* Override any inherited borders */
.ticket-body .info-row {
    border: none !important;
    border-bottom: none !important;
}

/* Location reference image styling */
.location-reference {
    margin-top: 30px;
    text-align: center;
}

.location-ref-image {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.location-ref-image:hover {
    transform: scale(1.02);
}
