        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        /* Hide scrollbar */
        ::-webkit-scrollbar {
            display: none;
        }

        html {
            -ms-overflow-style: none;
            scrollbar-width: none;
        }

        body {
            cursor: none;
            overflow: hidden;
            position: relative;
            width: 1080px;
            height: 1920px;
            padding-bottom: 150px;
            background: linear-gradient(180deg, #1e3c72 0%, #2a5298 50%, #1e3c72 100%);
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            overflow: hidden;
        }

        header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 35px 50px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
            height: 140px;
            border-bottom: 4px solid rgba(255, 255, 255, 0.3);
            position: relative;
        }

        header::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(90deg, 
                transparent 0%, 
                rgba(255, 255, 255, 0.1) 50%, 
                transparent 100%);
            animation: shimmer 3s infinite;
        }

        @keyframes shimmer {
            0%, 100% { opacity: 0; }
            50% { opacity: 1; }
        }

        .logo {
            width: 110px;
            height: auto;
            margin-left: 10px;
            filter: drop-shadow(3px 3px 8px rgba(0, 0, 0, 0.5));
            position: relative;
            z-index: 10;
            /* background: rgba(255, 255, 255, 0.9);
            padding: 10px; */
            border-radius: 15px;
        }

        .weer h2 {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            font-weight: 700;
            font-size: 32px;
            margin-right: 20px;
            color: #ffffff;
            text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
            position: relative;
            z-index: 10;
            background: rgba(0, 0, 0, 0.2);
            padding: 15px 25px;
            border-radius: 50px;
            backdrop-filter: blur(10px);
        }

        main {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: flex-start;
            padding: 60px 60px 180px 60px;
            height: calc(1920px - 140px);
            overflow-y: auto;
        }

        main .content-section {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            padding: 40px 50px;
            border-radius: 20px;
            margin: 30px 0;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
            max-width: 900px;
            width: 100%;
        }

        main .content-section h2 {
            font-size: 42px;
            color: #1238e3;
            margin-bottom: 25px;
            text-align: center;
            font-weight: 800;
        }

        main .content-section p {
            font-size: 24px;
            line-height: 1.8;
            color: #d3d3d3;
            text-align: justify;
            margin-bottom: 20px;
        }

        main h1 {
            font-size: 96px;
            color: #ffffff;
            text-align: center;
            margin-bottom: 80px;
            text-shadow: 4px 4px 12px rgba(0, 0, 0, 0.4);
            font-weight: 800;
            letter-spacing: 3px;
        }

        main img {
            max-width: 95%;
            max-height: 1200px;
            width: auto;
            height: auto;
            border-radius: 25px;
            /* box-shadow: 0 15px 50px rgba(0, 0, 0, 0.4); */
            transition: transform 0.3s ease;
        }

        main img:hover {
            transform: scale(1.02);
        }

        .rss-ticker {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 1080px;
            background: linear-gradient(90deg, #1a1a2e 0%, #16213e 50%, #1a1a2e 100%);
            border-top: 5px solid #e74c3c;
            overflow: hidden;
            height: 100px;
            display: flex;
            align-items: center;
            z-index: 9999;
            box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.4);
        }

        .rss-content {
            display: flex;
            align-items: center;
            white-space: nowrap;
            animation: scroll-left 120s linear infinite;
            gap: 0;
        }

        .rss-item {
            display: inline-flex;
            align-items: center;
            padding: 0 50px;
            gap: 20px;
        }

        .rss-item img {
            width: 50px;
            height: 50px;
            flex-shrink: 0;
            background: white;
            padding: 7px;
            border-radius: 10px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
        }

        .rss-item span:not(.timestamp) {
            font-size: 28px;
            font-weight: 700;
            color: #ffffff;
            text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
        }

        .rss-item .timestamp {
            font-size: 18px;
            color: #bdc3c7;
            margin-left: 10px;
            font-style: italic;
        }

        footer {
            position: fixed;
            bottom: 100px;
            left: 0;
            width: 1080px;
            background: rgba(0, 0, 0, 0.7);
            color: #ffffff;
            text-align: center;
            padding: 15px 0;
            font-size: 18px;
            z-index: 9998;
            backdrop-filter: blur(10px);
        }

        footer a {
            color: #667eea;
            text-decoration: none;
            font-weight: 600;
            transition: color 0.3s ease;
        }

        footer a:hover {
            color: #764ba2;
            text-decoration: underline;
        }

        @keyframes scroll-left {
            0% {
                transform: translateX(0);
            }

            100% {
                transform: translateX(-50%);
            }
        }