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

        body {
            background-color: #0a0a0a;
            color: #fafafa;
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            line-height: 1.6;
            overflow-x: hidden;
        }

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

        /* Loading Screen Styles */
        .loading-screen {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-color: #0a0a0a;
            z-index: 50;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            transition: opacity 0.8s ease;
        }

        .loading-content {
            text-align: center;
            max-width: 64rem;
            padding: 0 1.5rem;
        }

        .loading-title {
            font-size: 2.5rem;
            font-weight: bold;
            letter-spacing: -0.025em;
            margin-bottom: 1rem;
        }

        .loading-divider {
            height: 4px;
            width: 8rem;
            background-color: #fafafa;
            margin: 0 auto 2rem;
        }

        .loading-text {
            font-size: 1.125rem;
            color: #b3b3b3;
            margin-bottom: 1.5rem;
        }

        .progress-container {
            width: 100%;
            max-width: 28rem;
            margin: 0 auto 1rem;
            background-color: #141414;
            border-radius: 9999px;
            height: 8px;
        }

        .progress-bar {
            background-color: #fafafa;
            height: 8px;
            border-radius: 9999px;
            transition: width 0.3s ease-out;
            width: 0%;
        }

        .record-count {
            font-size: 0.875rem;
            color: #b3b3b3;
            margin-bottom: 2rem;
        }

        .current-record {
            min-height: 120px;
            display: flex;
            align-items: center;
            justify-content: center;
            max-width: 32rem;
            margin: 0 auto;
        }

        .current-record-content {
            text-align: center;
            opacity: 0;
        }

        .current-record h3 {
            font-size: 1.25rem;
            font-weight: 600;
            color: #fafafa;
            margin-bottom: 0.5rem;
        }

        .current-record p {
            color: #b3b3b3;
            font-size: 0.875rem;
            line-height: 1.6;
        }

        /* Main Content Styles */
        .main-content {
            min-height: 100vh;
            opacity: 0;
            transition: opacity 1s ease;
        }

        .header {
            position: sticky;
            top: 0;
            background-color: rgba(10, 10, 10, 0.9);
            backdrop-filter: blur(12px);
            border-bottom: 1px solid #262626;
            z-index: 40;
            padding: 2rem 0;
        }

        .header-content {
            text-align: center;
        }

        .header-title {
            font-size: 2.5rem;
            font-weight: bold;
            letter-spacing: -0.025em;
            margin-bottom: 1rem;
        }

        .header-divider {
            height: 4px;
            width: 8rem;
            background-color: #fafafa;
            margin: 0 auto 1rem;
        }

        .header-description {
            font-size: 1.125rem;
            color: #b3b3b3;
            max-width: 32rem;
            margin: 0 auto;
        }

        /* Records List Styles */
        .records-section {
            padding: 3rem 0;
        }

        .records-grid {
            display: grid;
            gap: 1.5rem;
            max-width: 64rem;
            margin: 0 auto;
        }

        .record-card {
            background-color: #0f0f0f;
            border: 1px solid #262626;
            border-radius: 0.5rem;
            padding: 1.5rem;
            transition: all 0.3s ease;
            cursor: pointer;
            opacity: 0;
        }

        .record-card:hover {
            background-color: rgba(31, 31, 31, 0.5);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
            border-color: rgba(250, 250, 250, 0.2);
        }

        .record-content {
            display: flex;
            align-items: flex-start;
            gap: 1rem;
        }

        .record-number {
            flex-shrink: 0;
            width: 3rem;
            height: 3rem;
            background-color: #fafafa;
            color: #0a0a0a;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            font-size: 1.125rem;
            transition: transform 0.3s ease;
        }

        .record-card:hover .record-number {
            transform: scale(1.1);
        }

        .record-info {
            flex: 1;
        }

        .record-title {
            font-size: 1.25rem;
            font-weight: 600;
            color: #fafafa;
            margin-bottom: 0.5rem;
            transition: color 0.3s ease;
        }

        .record-card:hover .record-title {
            color: #fafafa;
        }

        .record-description {
            color: #b3b3b3;
            line-height: 1.6;
        }

        .special-record {
            margin-top: 1rem;
            padding-top: 1rem;
            border-top: 1px solid #262626;
        }

        .special-badge {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 0.875rem;
            color: #fafafa;
        }

        .special-dot {
            width: 8px;
            height: 8px;
            background-color: #fafafa;
            border-radius: 50%;
            animation: pulse 2s infinite;
        }

        /* Modal Styles */
        .modal-overlay {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-color: rgba(0, 0, 0, 0.8);
            z-index: 100;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }

        .modal-overlay.active {
            opacity: 1;
            visibility: visible;
        }

        .modal-content {
            background-color: #0f0f0f;
            border: 1px solid #262626;
            border-radius: 0.75rem;
            max-width: 32rem;
            max-height: 80vh;
            overflow-y: auto;
            margin: 1rem;
            transform: scale(0.9);
            transition: transform 0.3s ease;
        }

        .modal-overlay.active .modal-content {
            transform: scale(1);
        }

        .modal-header {
            padding: 1.5rem;
            border-bottom: 1px solid #262626;
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
        }

        .modal-title {
            font-size: 1.5rem;
            font-weight: bold;
            color: #fafafa;
            flex: 1;
            margin-right: 1rem;
        }

        .modal-close {
            background: none;
            border: none;
            color: #b3b3b3;
            font-size: 1.5rem;
            cursor: pointer;
            padding: 0.25rem;
            border-radius: 0.25rem;
            transition: color 0.3s ease;
        }

        .modal-close:hover {
            color: #fafafa;
        }

        .modal-body {
            padding: 1.5rem;
        }

        .modal-description {
            color: #b3b3b3;
            line-height: 1.6;
            margin-bottom: 1.5rem;
        }

        .modal-details {
            display: grid;
            gap: 1rem;
        }

        .detail-item {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            padding: 0.75rem;
            background-color: #141414;
            border-radius: 0.375rem;
        }

        .detail-label {
            color: #b3b3b3;
            font-size: 0.875rem;
            font-weight: 500;
        }

        .detail-value {
            color: #fafafa;
            font-size: 0.875rem;
            text-align: right;
            flex: 1;
            margin-left: 1rem;
        }

        /* Footer Styles */
        .footer {
            text-align: center;
            padding: 3rem 0;
            margin-top: 4rem;
            border-top: 1px solid #262626;
        }

        .footer p {
            color: #b3b3b3;
            margin-bottom: 0.5rem;
        }

        .footer .copyright {
            font-size: 0.875rem;
        }

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

        @keyframes typingDots {
            0%, 20% { content: ""; }
            40% { content: "."; }
            60% { content: ".."; }
            80%, 100% { content: "..."; }
        }

        @keyframes pulse {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.5; }
        }

        .fade-in-up {
            animation: fadeInUp 0.6s ease-out forwards;
        }

        .typing-dots::after {
            content: "";
            animation: typingDots 1.5s infinite;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .loading-title, .header-title {
                font-size: 2rem;
            }
            
            .record-content {
                flex-direction: column;
                text-align: center;
            }
            
            .modal-content {
                margin: 0.5rem;
            }
        }