        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Arial', sans-serif;
            line-height: 1.6;
            color: #4C4242;
        }

        .header {
            background: #4C4242;
            padding: 1rem 0;
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            transition: all 0.3s ease;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }

        .header.scrolled {
            padding: 0.5rem 0;
            background: rgba(76, 66, 66, 0.9);
        }

        .nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .logo {
            display: flex;
            align-items: center;
            color: #FFD700;
            font-size: 1.2rem;
            font-weight: bold;
            text-decoration: none;
            transition: transform 0.3s ease;
        }

        .logo:hover {
            transform: scale(1.05);
        }

        .logo-image {
            width: 40px;
            height: 40px;
            margin-right: 0.5rem;
            background-size: contain;
            background-repeat: no-repeat;
            background-position: center;
            transition: transform 0.5s ease;
        }

        .logo:hover .logo-image {
            transform: rotate(360deg);
        }

        .nav-menu {
            display: flex;
            list-style: none;
            gap: 2rem;
        }

        .nav-menu a {
            color: white;
            text-decoration: none;
            font-size: 0.9rem;
            position: relative;
            padding: 0.5rem 0;
            transition: color 0.3s ease;
        }

        .nav-menu a:hover {
            color: #FFD700;
        }

        .nav-menu a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 0;
            background-color: #FFD700;
            transition: width 0.3s ease;
        }

        .nav-menu a:hover::after {
            width: 100%;
        }

        .hero {
            min-height: 100vh;
            background: url('Asset/Base.jpg') no-repeat center center;
            background-size: cover;
            position: relative;
            padding: 2rem;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5);
        }

        .hero-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
            position: relative;
            z-index: 1;
            width: 100%;
        }

        .hero-text {
            max-width: 600px;
            z-index: 1;
            animation: fadeInUp 1s ease-out;
        }

        .hero-text h1 {
            font-size: 3rem;
            color: white;
            margin-bottom: 1.5rem;
            line-height: 1.2;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
        }

        .hero-text .highlight {
            color: #FFD700;
        }

        .hero-text p {
            color: rgba(255, 255, 255, 0.9);
            font-size: 1.2rem;
            line-height: 1.5;
            max-width: 600px;
            animation: fadeInUp 1s ease-out 0.3s forwards;
            opacity: 0;
        }

        .name-input-container {
            background: rgba(0, 0, 0, 0.7);
            padding: 2rem;
            border-radius: 10px;
            z-index: 10;
            text-align: center;
            max-width: 500px;
            width: 90%;
            animation: fadeIn 0.5s ease-out, pulse 2s infinite;
            border: 2px solid #FFD700;
        }

        .name-input-container h2 {
            color: #FFD700;
            margin-bottom: 1rem;
            animation: bounce 2s infinite;
        }

        .name-input {
            padding: 0.8rem;
            width: 100%;
            margin-bottom: 1rem;
            border: 2px solid #FFD700;
            border-radius: 5px;
            font-size: 1rem;
            transition: all 0.3s ease;
        }

        .name-input:focus {
            transform: scale(1.02);
            box-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
        }

        .name-submit-btn {
            background: #FFD700;
            color: #2c1810;
            padding: 0.8rem 1.5rem;
            border: none;
            border-radius: 5px;
            font-weight: bold;
            cursor: pointer;
            font-size: 1rem;
            transition: all 0.3s ease;
        }

        .name-submit-btn:hover {
            background: #e6c200;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(230, 194, 0, 0.4);
        }

        .hidden {
            display: none;
            animation: fadeOut 0.5s ease-out;
        }

        .scrolling-text {
            background: #FFD700;
            padding: 1rem 0;
            text-align: center;
            overflow: hidden;
        }

        .scrolling-content {
            font-weight: bold;
            font-size: 1.2rem;
            color: #2c1810;
            letter-spacing: 2px;
            word-spacing: 50px;
            display: inline-block;
            white-space: nowrap;
            animation: scrollText 20s linear infinite;
        }

        .classes {
            background: #e8e8e8;
            padding: 4rem 0;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .section-title {
            text-align: center;
            margin-bottom: 3rem;
        }

        .section-title h2 {
            font-size: 2.8rem;
            color: #2c1810;
            font-weight: bold;
            margin-bottom: 1rem;
            position: relative;
            display: inline-block;
        }

        .section-title h2::after {
            content: '';
            position: absolute;
            width: 50%;
            height: 3px;
            background: #FFD700;
            bottom: -10px;
            left: 25%;
            transform: scaleX(0);
            transform-origin: center;
            transition: transform 0.5s ease;
        }

        .section-title:hover h2::after {
            transform: scaleX(1);
        }

        .section-title .highlight {
            color: #FFD700;
        }

        .section-title p {
            color: #666;
            font-size: 1.1rem;
        }

        .class-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
        }

        .class-card {
            padding: 2rem;
            border-radius: 15px;
            transition: all 0.3s ease;
            background: white;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            display: flex;
            flex-direction: column;
            height: 100%;
            opacity: 0;
            transform: translateY(20px);
        }

        .class-card.animate {
            opacity: 1;
            transform: translateY(0);
        }

        .class-card:nth-child(1) { transition-delay: 0.1s; }
        .class-card:nth-child(2) { transition-delay: 0.2s; }
        .class-card:nth-child(3) { transition-delay: 0.3s; }

        .class-card:hover {
            transform: translateY(-10px) scale(1.02);
            box-shadow: 0 15px 30px rgba(0,0,0,0.2);
        }

        .class-image {
            width: 100%;
            height: 180px;
            border-radius: 10px;
            overflow: hidden;
            margin-bottom: 1.5rem;
            background-size: cover;
            background-position: center;
            transition: transform 0.5s ease;
        }

        .class-card:hover .class-image {
            transform: scale(1.1);
        }

        .class-card h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            text-transform: uppercase;
            font-weight: bold;
            line-height: 1.2;
            color: #2c1810;
            min-height: 3.6rem;
        }

        .class-card p {
            margin-bottom: 1.5rem;
            font-size: 1rem;
            line-height: 1.6;
            color: #666;
            flex-grow: 1;
        }

        .class-divider {
            height: 3px;
            background: #FFD700;
            margin: 1rem 0;
            width: 50px;
            transition: width 0.3s ease;
        }

        .class-card:hover .class-divider {
            width: 100px;
        }

        .about {
            background: #4a4a4a;
            color: white;
            padding: 4rem 0;
        }

        .about-content {
            display: grid;
            grid-template-columns: 1fr 1.5fr;
            gap: 3rem;
            align-items: center;
        }

        .about-image {
            width: 100%;
            display: flex;
            justify-content: center;
            align-items: center;
            perspective: 1000px;
        }

        .about-image img {
            width: 300px;
            height: 300px;
            border-radius: 50%;
            object-fit: cover;
            border: 5px solid #FFD700;
            box-shadow: 0 5px 15px rgba(0,0,0,0.3);
            transition: transform 0.5s ease, box-shadow 0.5s ease;
            transform-style: preserve-3d;
        }

        .about-image:hover img {
            transform: rotateY(20deg) scale(1.05);
            box-shadow: 0 10px 25px rgba(0,0,0,0.5);
        }

        .about-text h2 {
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
            line-height: 1.3;
        }

        .about-text .highlight {
            color: #FFD700;
        }

        .about-text p {
            font-size: 1.1rem;
            line-height: 1.6;
            opacity: 0.9;
        }

        .vision-mission {
            background: #e8e8e8;
            color: black;
            padding: 4rem 0;
        }

        .vision-mission-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
        }

        .vision-box, .mission-box {
            background: rgba(255, 215, 0, 0.1);
            padding: 2rem;
            border-radius: 10px;
            border-left: 4px solid #FFD700;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .vision-box:hover, .mission-box:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        }

        .vision-box h2, .mission-box h2 {
            font-size: 2rem;
            margin-bottom: 1.5rem;
            color: #FFD700;
        }

        .vision-box p, .mission-box p {
            margin-bottom: 1rem;
            line-height: 1.6;
        }

        .mission-list {
            list-style-type: none;
        }

        .mission-list li {
            position: relative;
            padding-left: 1.5rem;
            margin-bottom: 0.8rem;
            transition: transform 0.3s ease;
        }

        .mission-list li:hover {
            transform: translateX(10px);
        }

        .mission-list li:before {
            content: "•";
            color: #FFD700;
            font-size: 1.5rem;
            position: absolute;
            left: 0;
            top: -0.2rem;
        }

        .revo-banner {
            background: #FFD700;
            padding: 1rem 0;
            text-align: center;
            overflow: hidden;
        }

        .revo-banner-content {
            font-weight: bold;
            font-size: 1.2rem;
            color: #2c1810;
            letter-spacing: 2px;
            word-spacing: 50px;
            display: inline-block;
            white-space: nowrap;
            animation: scrollTextReverse 20s linear infinite;
        }

        .contact {
            background: #e8e8e8;
            padding: 4rem 0;
        }

        .contact-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
        }

        .contact-form h2 {
            font-size: 2rem;
            margin-bottom: 1rem;
            color: #2c1810;
            font-weight: bold;
            line-height: 1.3;
        }

        .contact-form h2 .highlight {
            color: #FFD700;
        }

        .contact-form p {
            color: #666;
            font-size: 1rem;
            margin-bottom: 2rem;
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: bold;
            color: #2c1810;
            font-size: 0.9rem;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 0.8rem;
            border: 2px solid #ccc;
            border-radius: 5px;
            font-family: inherit;
            font-size: 0.9rem;
            transition: all 0.3s ease;
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: #FFD700;
            transform: scale(1.01);
            box-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
        }

        .radio-group {
            display: flex;
            gap: 1.5rem;
            margin-top: 0.5rem;
        }

        .radio-group label {
            font-weight: normal;
            display: flex;
            align-items: center;
            gap: 0.3rem;
            cursor: pointer;
            transition: color 0.3s ease;
        }

        .radio-group label:hover {
            color: #FFD700;
        }

        .submit-btn {
            background: #FFD700;
            color: #2c1810;
            padding: 0.8rem 1.5rem;
            border: none;
            border-radius: 5px;
            font-weight: bold;
            cursor: pointer;
            font-size: 0.9rem;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .submit-btn:hover {
            background: #e6c200;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(230, 194, 0, 0.4);
        }

        .submit-btn::after {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 5px;
            height: 5px;
            background: rgba(255, 255, 255, 0.5);
            opacity: 0;
            border-radius: 100%;
            transform: scale(1, 1) translate(-50%);
            transform-origin: 50% 50%;
        }

        .submit-btn:focus:not(:active)::after {
            animation: ripple 1s ease-out;
        }

        .contact-info {
            background: white;
            padding: 2rem;
            border-radius: 10px;
            color: #2c1810;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            display: flex;
            flex-direction: column;
            max-height: 600px;
            transition: all 0.3s ease;
        }

        .contact-info:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.2);
        }

        .contact-info h3 {
            margin-bottom: 1.5rem;
            font-size: 1.3rem;
            border-bottom: 2px solid #FFD700;
            padding-bottom: 0.5rem;
        }

        .tickets-container {
            overflow-y: auto;
            flex-grow: 1;
            padding-right: 10px;
        }

        .tickets-container::-webkit-scrollbar {
            width: 8px;
        }

        .tickets-container::-webkit-scrollbar-track {
            background: #f1f1f1;
            border-radius: 10px;
        }

        .tickets-container::-webkit-scrollbar-thumb {
            background: #FFD700;
            border-radius: 10px;
        }

        .tickets-container::-webkit-scrollbar-thumb:hover {
            background: #e6c200;
        }

        .ticket {
            background: #f9f9f9;
            padding: 1.5rem;
            border-radius: 8px;
            border-left: 4px solid #FFD700;
            margin-bottom: 1rem;
            transition: all 0.3s ease;
        }

        .ticket:hover {
            transform: translateX(5px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }

        .ticket p {
            margin: 0.5rem 0;
            font-size: 0.9rem;
        }

        .ticket p strong {
            font-weight: bold;
            color: #2c1810;
        }

        .ticket .ticket-time {
            font-size: 0.8rem;
            color: #666;
            text-align: right;
        }

        .footer {
            background: #2c1810;
            color: white;
            text-align: center;
            padding: 1.5rem 0;
            font-size: 0.9rem;
            position: relative;
        }

        .footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 3px;
            background: linear-gradient(90deg, #FFD700, #2c1810, #FFD700);
            animation: gradientBG 3s ease infinite;
            background-size: 200% 200%;
        }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        @keyframes fadeOut {
            from { opacity: 1; }
            to { opacity: 0; }
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes scrollText {
            from { transform: translateX(100%); }
            to { transform: translateX(-100%); }
        }

        @keyframes scrollTextReverse {
            from { transform: translateX(-100%); }
            to { transform: translateX(100%); }
        }

        @keyframes pulse {
            0% { box-shadow: 0 0 0 0 rgba(255, 215, 0, 0.4); }
            70% { box-shadow: 0 0 0 15px rgba(255, 215, 0, 0); }
            100% { box-shadow: 0 0 0 0 rgba(255, 215, 0, 0); }
        }

        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
            40% { transform: translateY(-10px); }
            60% { transform: translateY(-5px); }
        }

        @keyframes ripple {
            0% {
                transform: scale(0, 0);
                opacity: 1;
            }
            20% {
                transform: scale(25, 25);
                opacity: 1;
            }
            100% {
                opacity: 0;
                transform: scale(40, 40);
            }
        }

        @keyframes gradientBG {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }

        @media (max-width: 768px) {
            .nav {
                padding: 0 1rem;
            }
            
            .nav-menu {
                display: none;
            }

            .hero-content {
                grid-template-columns: 1fr;
                gap: 2rem;
                text-align: center;
            }

            .hero-text {
                text-align: center;
                left: 0;
                padding: 0 1rem;
                max-width: 100%;
            }

            .hero-text h1 {
                font-size: 2.2rem;
            }

            .hero-text p {
                font-size: 1rem;
                margin: 0 auto;
            }

            .about-content,
            .contact-content,
            .vision-mission-content {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

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

            .class-grid {
                grid-template-columns: 1fr;
            }

            .about-image img {
                width: 200px;
                height: 200px;
            }

            .class-card {
                height: auto;
            }
        }
