* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Roboto', sans-serif;
            background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
            color: white;
            min-height: 100vh;
        }

        .header {
            background: linear-gradient(135deg, #FC9701 0%, #e8850a 100%);
            padding: 20px;
            text-align: center;
            border-bottom: 3px solid #ffb84d;
            box-shadow: 0 4px 20px rgba(252, 151, 1, 0.3);
        }

        .header h1 {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 10px;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
        }

        .header h2 {
            font-size: 1.8rem;
            font-weight: 600;
            margin-bottom: 20px;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
            opacity: 0.9;
        }

        .header .date {
            font-size: 1.2rem;
            opacity: 0.9;
        }

        .logos {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-top: 15px;
        }

        .logo {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, #ffb84d 0%, #FC9701 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            box-shadow: 0 4px 15px rgba(252, 151, 1, 0.4);
            transition: transform 0.3s ease;
        }

        .logo:hover {
            transform: scale(1.1);
        }

        .blink {
            animation: blink 2.5s infinite;
        }

        @keyframes blink {
            0%, 40% { opacity: 1; }
            50%, 90% { opacity: 0; }
            100% { opacity: 1; }
        }

        .blink-1m {
            animation: blink-1m 60s infinite;
        }

        @keyframes blink-1m {
            0%, 40% { opacity: 1; }
            50%, 90% { opacity: 0; }
            100% { opacity: 1; }
        }

        .header-image {
            width: 100%;
            height: 200px;
            background: linear-gradient(135deg, #FC9701 0%, #e8850a 100%);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            border: 2px solid #ffb84d;
            box-shadow: 0 4px 20px rgba(252, 151, 1, 0.3);
        }

        .header-image-placeholder {
            color: white;
            font-size: 1.2rem;
            text-align: center;
            opacity: 0.8;
        }

        .year-display {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 20px;
            margin: 20px 0;
        }

        .year-box {
            background: linear-gradient(135deg, #FC9701 0%, #e8850a 100%);
            padding: 15px 25px;
            border-radius: 10px;
            font-size: 1.5rem;
            font-weight: 700;
            color: white;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
            box-shadow: 0 4px 15px rgba(252, 151, 1, 0.4);
            border: 2px solid #ffb84d;
        }

        .blink-text {
            font-size: 1.2rem;
            color: #FC9701;
            font-weight: 700;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
        }

        .title-with-logos {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 20px;
            margin-bottom: 20px;
        }

        .logo-group {
            display: flex;
            gap: 10px;
        }

        .logo-img {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            border: 2px solid #ffb84d;
            box-shadow: 0 4px 15px rgba(252, 151, 1, 0.4);
            transition: transform 0.3s ease;
            object-fit: cover;
        }

        .logo-img:hover {
            transform: scale(1.1);
        }

        .subtitle-with-years {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 20px;
            margin-bottom: 20px;
        }

        .right-section {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .date-display {
            display: flex;
            flex-direction: row;
            align-items: center;
            justify-content: center;
            gap: 20px;
            padding: 20px;
        }

        .date-icon {
            font-size: 3rem;
        }

        .date-text-container {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
        }

        .date-text {
            font-size: 2rem;
            font-weight: 700;
            color: #FC9701;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
            margin-bottom: 5px;
        }

        .day-text {
            font-size: 1.2rem;
            opacity: 0.9;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .container {
            padding: 30px;
            max-width: 100% ;
            margin: 0 auto;
        }

        .main-layout {
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 30px;
        }

        .left-section {
            display: flex;
            flex-direction: column;
            gap: 40px;
        }

        .summary-section {
            display: grid;
            grid-template-columns: 1fr 1fr 1fr;
            gap: 20px;
        }

        .tables-section {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
        }

        .summary-card {
            background: linear-gradient(135deg, rgba(252, 151, 1, 0.1) 0%, rgba(232, 133, 10, 0.05) 100%);
            border-radius: 15px;
            padding: 25px;
            text-align: center;
            border: 2px solid rgba(252, 151, 1, 0.3);
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
            backdrop-filter: blur(10px);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .summary-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
        }

        .summary-card.large {
            grid-column: span 2;
        }

        .summary-card h2 {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 10px;
            color: #FC9701;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
        }

        .summary-card h3 {
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 10px;
            color: #FC9701;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
        }

        .summary-card p {
            font-size: 1.1rem;
            opacity: 0.9;
            margin-bottom: 15px;
        }

        .icon {
            font-size: 2rem;
            margin-bottom: 10px;
        }

        .sub-cards {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
            margin-top: 20px;
        }

        .sub-card {
            background: linear-gradient(135deg, rgba(252, 151, 1, 0.2) 0%, rgba(232, 133, 10, 0.1) 100%);
            border-radius: 10px;
            padding: 15px;
            text-align: center;
            border: 1px solid rgba(252, 151, 1, 0.4);
            backdrop-filter: blur(5px);
            transition: transform 0.3s ease;
        }

        .sub-card:hover {
            transform: scale(1.05);
        }

        .sub-card h4 {
            font-size: 1.5rem;
            color: #FC9701;
            margin-bottom: 5px;
            text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
        }

        .sub-card p {
            font-size: 0.9rem;
            opacity: 0.8;
        }

        .arrow {
            text-align: center;
            font-size: 1.5rem;
            color: #FC9701;
            margin: 10px 0;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
        }

        .district-card-full {
            height: 100%;
            display: flex;
            flex-direction: column;
        }

        .district-card-full table {
            font-size: 0.9rem;
        }

        .district-card-full th,
        .district-card-full td {
            padding: 8px 6px;
            font-size: 0.85rem;
        }

        .district-card-full th:first-child,
        .district-card-full td:first-child {
            text-align: left;
            padding-left: 10px;
        }

        .district-list {
            max-height: none;
            overflow-y: visible;
            flex: 1;
        }

        .table-container {
            background: linear-gradient(135deg, rgba(252, 151, 1, 0.1) 0%, rgba(232, 133, 10, 0.05) 100%);
            border-radius: 15px;
            padding: 20px;
            border: 2px solid rgba(252, 151, 1, 0.3);
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
            backdrop-filter: blur(10px);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .table-container:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
        }

        .table-container h3 {
            font-size: 1.3rem;
            margin-bottom: 20px;
            color: #FC9701;
            text-align: center;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
        }

        table {
            width: 100%;
            border-collapse: collapse;
        }

        th, td {
            padding: 12px 8px;
            text-align: center;
            border-bottom: 1px solid rgba(252, 151, 1, 0.3);
            white-space: nowrap;
        }

        th {
            background: linear-gradient(135deg, rgba(252, 151, 1, 0.15) 0%, rgba(232, 133, 10, 0.1) 100%);
            font-weight: 700;
            color: #ffb84d;
            text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
        }

        td {
            opacity: 0.9;
            color: #ffffff;
        }

        .district-list {
            max-height: none;
            overflow-y: visible;
        }

        .district-item {
            display: flex;
            justify-content: space-between;
            padding: 8px 0;
            border-bottom: 1px solid rgba(252, 151, 1, 0.3);
            white-space: nowrap;
            transition: background-color 0.3s ease;
        }

        .district-item:hover {
            background-color: rgba(252, 151, 1, 0.1);
            border-radius: 5px;
        }

        .district-item:last-child {
            border-bottom: none;
        }

        .district-name {
            font-weight: 500;
        }

        .district-count {
            font-weight: 700;
            color: #FC9701;
            text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
        }

        .animal-icons {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin: 15px 0;
        }

        .animal-icon {
            font-size: 1.5rem;
        }

        @media (max-width: 1200px) {
            .summary-section {
                grid-template-columns: 1fr;
            }
            
            .tables-section {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 768px) {
            .header h1 {
                font-size: 1.8rem;
            }
            
            .summary-card h2 {
                font-size: 2rem;
            }
            
            .container {
                padding: 20px;
            }
        }