 body {
            background-color: #f9fafb;
            margin: 0;
            padding: 0;
        }
        
        @keyframes ticker {
            0% {
                transform: translateX(-100%);
            }
            100% {
                transform: translateX(100%);
            }
        }
        
        @keyframes pulse {
            0%, 100% {
                opacity: 1;
            }
            50% {
                opacity: 0.5;
            }
        }
        
        .animate-ticker {
            animation: ticker 13s linear infinite;
            white-space: nowrap;
        }
        
        .animate-pulse {
            animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
        }
        
        .min-h-screen {
            min-height: 100vh;
        }
        
        .bg-gray-50 {
            background-color: #f9fafb;
        }
        
        .py-10 {
            padding-top: 2.5rem;
            padding-bottom: 2.5rem;
        }
        
        .px-4 {
            padding-left: 1rem;
            padding-right: 1rem;
        }
        
        .max-w-5xl {
            max-width: 64rem;
        }
        
        .mx-auto {
            margin-left: auto;
            margin-right: auto;
        }
        
        .header-container {
            margin-bottom: 2rem;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }
        
        .header-line {
            position: absolute;
            right: 0;
            top: 0;
            width: 4px;
            height: 100%;
            background-color: #1e6a5e;
            border-radius: 9999px;
        }
        
        .header-content {
            padding-right: 1rem;
            display: flex;
            align-items: center;
            gap: 1rem;
        }
        
        .logo-img {
            width: 3.5rem;
            height: 3.5rem;
            border-radius: 0.5rem;
            object-fit: cover;
        }
        
        .event-title {
            font-size: 1.875rem;
            font-weight: 700;
            color: #1e6a5e;
            margin: 0;
        }
        
        .event-code {
            font-size: 0.875rem;
            color: #6b7280;
            margin-top: 0.25rem;
        }
        
        .event-code span {
            font-weight: 700;
            color: #1e6a5e;
        }
        
        .edit-btn {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            background-color: #1e6a5e;
            color: white;
            padding: 0.5rem 1rem;
            border-radius: 0.5rem;
            font-size: 0.875rem;
            border: none;
            transition: background-color 0.2s;
        }
        
        .edit-btn:hover {
            background-color: #1f4a52;
        }
        
        .main-card {
            background-color: white;
            border-radius: 0.75rem;
            border: 1px solid #f3f4f6;
            box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
            padding: 1.5rem;
        }
        
        .space-y-8 > * + * {
            margin-top: 2rem;
        }
        
        .profile-image {
            width: 100%;
            height: 13rem;
            object-fit: cover;
            border-radius: 0.5rem;
            /* border: 1px solid #e5e7eb; */
        }
        
        .section-title {
            font-size: 0.875rem;
            font-weight: 500;
            color: #374151;
            margin-bottom: 0.75rem;
        }
        
        .info-card {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            background-color: #f9fafb;
            padding: 0.75rem;
            border-radius: 0.5rem;
        }
        
        .info-icon {
            width: 1.25rem;
            height: 1.25rem;
            color: #6b7280;
        }
        
        .info-label {
            font-size: 0.75rem;
            color: #6b7280;
            margin: 0;
        }
        
        .info-value {
            font-size: 0.875rem;
            margin: 0;
        }
        
        .discount-value {
            color: #16a34a;
            font-weight: 700;
        }
        
        .description-box {
            background-color: #f9fafb;
            padding: 1rem;
            border-radius: 0.5rem;
            font-size: 0.875rem;
            color: #4b5563;
            line-height: 1.625;
        }
        
        .grid-custom {
            display: grid;
            gap: 0.75rem;
        }
        
        .grid-cols-2 {
            grid-template-columns: repeat(2, 1fr);
        }
        
        .grid-cols-3 {
            grid-template-columns: repeat(3, 1fr);
        }
        
        .news-ticker {
            background-color: #1e6a5e;
            color: white;
            overflow: hidden;
            border-radius: 0.75rem;
            box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
            border: 1px solid #1f4a52;
            margin-top: 1.5rem;
        }
        
        .ticker-content {
            white-space: nowrap;
            padding: 0.5rem 1rem;
            font-size: 0.75rem;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 2.5rem;
        }
        
        .ticker-text {
            animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
            font-size: 1rem;
            letter-spacing: 2px;
        }
         
        
        @media (max-width: 768px) {
            .header-container {
                flex-direction: column;
                align-items: flex-start;
                gap: 1rem;
            }
            
            .edit-btn {
                align-self: flex-start;
            }
            
            .grid-cols-2, .grid-cols-3 {
                grid-template-columns: 1fr;
            }
            
            .event-title {
                font-size: 1.5rem;
            }
            
            .profile-image {
                height: 10rem;
            }
        }
        
        .container-custom {
            width: 100%;
        }
        
        i.fas, i.far {
            margin-left: 0.5rem;
        }
        
        .text-green-600 {
            color: #16a34a;
        }
        
        .bg-green-50 {
            background-color: #f0fdf4;
        }