:root {
            --deep-ocean: #0a1a2d;
            --ocean-depths: #143d59;
            --aqua-marine: #1e638c;
            --sea-foam: #2a9d8f;
            --wave: #8ecae6;
            --mist: #e9f1f7;
            --transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
            --shadow: 0 12px 30px rgba(10, 26, 45, 0.3);
            --gold: #ffd700;
            --silver: #c0c0c0;
            --teal-transparent: rgba(42, 157, 143, 0.4);
        }

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

        body {
            font-family: 'Raleway', sans-serif;
            color: #333;
            background: linear-gradient(to bottom, #f0f8ff, #e6f7ff);
            line-height: 1.6;
            min-height: 100vh;
        }

        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Header */
        .page-header {
            background: linear-gradient(120deg, var(--ocean-depths), var(--deep-ocean));
            color: white;
            padding: 80px 0 50px;
            text-align: center;
            position: relative;
            overflow: hidden;
            margin-bottom: 50px;
        }

        .page-header::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 10px;
            background: linear-gradient(90deg, var(--sea-foam), var(--wave));
        }

        .page-header h1 {
            font-size: 2.8rem;
            font-weight: 700;
            margin-bottom: 20px;
            position: relative;
            z-index: 2;
            text-shadow: 0 2px 8px rgba(0,0,0,0.4);
        }

        .page-header p {
            max-width: 800px;
            margin: 0 auto;
            font-size: 1.2rem;
            opacity: 0.9;
            position: relative;
            z-index: 2;
        }

        .wave-divider {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            overflow: hidden;
            line-height: 0;
            transform: rotate(180deg);
        }

        .wave-divider svg {
            position: relative;
            display: block;
            width: calc(100% + 1.3px);
            height: 100px;
        }

        .wave-divider .shape-fill {
            fill: #f0f8ff;
        }

        /* Section Heading */
        .section-heading {
            text-align: center;
            margin-bottom: 40px;
            position: relative;
            padding-bottom: 20px;
        }

        .section-heading h2 {
            font-size: 2.2rem;
            color: var(--ocean-depths);
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
        }

        .section-heading h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(to right, var(--sea-foam), var(--wave));
            border-radius: 2px;
        }

        .section-heading p {
            color: var(--aqua-marine);
            max-width: 700px;
            margin: 20px auto 0;
            font-size: 1.1rem;
        }

        /* Pengumuman Grid */
        .pengumuman-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            gap: 30px;
            margin-bottom: 50px;
        }

        .pengumuman-card {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: var(--transition);
            border: 1px solid rgba(142, 202, 230, 0.1);
            display: flex;
            flex-direction: column;
            height: 100%;
        }

        .pengumuman-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(10, 26, 45, 0.2);
        }

        .pengumuman-img {
            width: 100%;
            height: 220px;
            overflow: hidden;
            position: relative;
        }

        .pengumuman-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.8s ease;
        }

        .pengumuman-card:hover .pengumuman-img img {
            transform: scale(1.1);
        }

        .pengumuman-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 40%;
            background: linear-gradient(to top, rgba(10,26,45,0.9), transparent);
            display: flex;
            align-items: flex-end;
            padding: 20px;
        }

        .pengumuman-title {
            color: white;
            font-size: 1.5rem;
            font-weight: 700;
            margin: 0;
            text-shadow: 0 2px 4px rgba(0,0,0,0.5);
        }

        .pengumuman-content {
            padding: 25px;
            flex: 1;
            display: flex;
            flex-direction: column;
        }

        .pengumuman-meta {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            margin-bottom: 15px;
        }

        .pengumuman-info {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 0.95rem;
            color: var(--aqua-marine);
        }

        .pengumuman-info i {
            color: var(--sea-foam);
            font-size: 1.1rem;
        }

        .pengumuman-excerpt {
            margin-bottom: 20px;
            color: #555;
            flex: 1;
        }

        .pengumuman-button {
            background: linear-gradient(45deg, var(--sea-foam), var(--wave));
            color: white;
            border: none;
            padding: 10px 20px;
            border-radius: 8px;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            display: inline-flex;
            align-items: center;
            gap: 8px;
            text-decoration: none;
            text-align: center;
            margin-top: auto;
            width: fit-content;
        }

        .pengumuman-button:hover {
            transform: scale(1.05);
            box-shadow: 0 8px 20px rgba(42, 157, 143, 0.4);
        }

        /* Pagination */
        .pagination {
            display: flex;
            justify-content: center;
            margin: 40px 0;
            flex-wrap: wrap;
        }

        .pagination ul {
            display: flex;
            list-style: none;
            background: white;
            border-radius: 50px;
            padding: 8px;
            box-shadow: var(--shadow);
            border: 1px solid rgba(142, 202, 230, 0.1);
        }

        .pagination li {
            margin: 0 5px;
        }

        .pagination a, .pagination span {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            text-decoration: none;
            font-weight: 600;
            transition: var(--transition);
        }

        .pagination a {
            color: var(--ocean-depths);
            background: transparent;
        }

        .pagination a:hover {
            background: rgba(142, 202, 230, 0.2);
            color: var(--aqua-marine);
        }

        .pagination .active span {
            background: linear-gradient(45deg, var(--sea-foam), var(--wave));
            color: white;
        }

        .pagination .disabled span {
            color: #ccc;
            cursor: not-allowed;
        }

        /* Sidebar */
        .sidebar {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: var(--shadow);
            margin-top: 40px;
            border: 1px solid rgba(142, 202, 230, 0.1);
        }

        .sidebar-header {
            background: linear-gradient(90deg, var(--sea-foam), var(--wave));
            color: white;
            padding: 15px 20px;
            font-weight: 600;
            font-size: 1.2rem;
        }

        .sidebar-body {
            padding: 20px;
        }

        .sidebar-list {
            list-style: none;
        }

        .sidebar-list li {
            padding: 12px 0;
            border-bottom: 1px solid rgba(142, 202, 230, 0.2);
        }

        .sidebar-list li:last-child {
            border-bottom: none;
        }

        .sidebar-list a {
            color: var(--ocean-depths);
            text-decoration: none;
            font-weight: 500;
            display: block;
            transition: var(--transition);
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .sidebar-list a:hover {
            color: var(--sea-foam);
            transform: translateX(5px);
        }

        .sidebar-list i {
            color: var(--sea-foam);
            width: 24px;
            text-align: center;
        }

        /* Footer */
        .footer {
            background: linear-gradient(to bottom, var(--deep-ocean), #081624);
            color: white;
            padding: 60px 0 20px;
            margin-top: 80px;
            position: relative;
        }

        .footer:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 10px;
            background: linear-gradient(90deg, var(--sea-foam), var(--wave));
        }

        .copyright {
            text-align: center;
            padding: 30px 0 0;
            font-family: 'Raleway', sans-serif;
            font-size: 0.95rem;
            color: rgba(233, 241, 247, 0.7);
            letter-spacing: 0.5px;
            border-top: 1px solid rgba(142, 202, 230, 0.1);
            margin-top: 40px;
        }

        /* Responsive */
        @media (max-width: 992px) {
            .pengumuman-grid {
                grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            }
        }

        @media (max-width: 768px) {
            .page-header {
                padding: 60px 0 40px;
            }
            
            .page-header h1 {
                font-size: 2.3rem;
            }
            
            .section-heading h2 {
                font-size: 1.8rem;
            }
        }

        @media (max-width: 576px) {
            .page-header {
                padding: 50px 0 30px;
            }
            
            .page-header h1 {
                font-size: 2rem;
            }
            
            .section-heading h2 {
                font-size: 1.6rem;
            }
            
            .pengumuman-grid {
                grid-template-columns: 1fr;
            }
            
            .pengumuman-img {
                height: 200px;
            }
        }