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

        body {
            font-family: 'Arial', sans-serif;
            background: linear-gradient(135deg, #000000 0%, #0a0000 50%, #1a0000 100%);
            color: #fff; 
            min-height: 100vh;
        }

        .hero-section {
            background: linear-gradient(rgba(0,0,0,0.9), rgba(0,0,0,0.7));
            padding: 80px 0; 
            text-align: center; 
            position: relative;
            border-bottom: 1px solid rgba(220, 20, 60, 0.3);
        }

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

        /* Improved Logo */
        .brand-logo {
            position: absolute; 
            top: 30px; 
            right: 30px;
            width: 160px; 
            height: 160px;
            display: block; 
            border-radius: 15px;
            border: 1px solid rgba(220, 20, 60, 0.4);
            background: rgba(0, 0, 0, 0.7);
            overflow: hidden;
            backdrop-filter: blur(10px);
            transition: all 0.3s ease;
        }

        .brand-logo:hover {
            border-color: #dc143c;
            transform: scale(1.05);
        }

        .brand-logo img {
            width: 100%; 
            height: 100%; 
            object-fit: contain; 
            display: block;
        }

        /* Refined Profile Image */
        .profile-image {
            width: 220px; 
            height: 220px; 
            border-radius: 50%;
            border: 3px solid rgba(220, 20, 60, 0.6);
            margin: 0 auto 40px; 
            overflow: hidden;
            box-shadow: 
                0 0 40px rgba(220, 20, 60, 0.3),
                0 10px 30px rgba(0,0,0,0.6);
            background: url('https://bazu-photos.s3.amazonaws.com/athlinks/Racers/50189000/g/50189736_g.jpg?t=638930239185040000') center/cover no-repeat;
            position: relative;
        }

        .profile-image::after {
            content: '';
            position: absolute;
            inset: -3px;
            border-radius: 50%;
            padding: 3px;
            background: linear-gradient(45deg, #dc143c, #ff0000, #8b0000, #dc143c);
            mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
            mask-composite: exclude;
            animation: rotate 4s linear infinite;
            opacity: 0.8;
        }

        @keyframes rotate {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        /* Improved Typography */
        .hero-title { 
            color: #fff; 
            font-size: 4.5em; 
            font-weight: 900; 
            margin-bottom: 20px; 
            text-shadow: 
                0 0 20px rgba(220, 20, 60, 0.6),
                2px 2px 4px rgba(0,0,0,0.8); 
            letter-spacing: 4px; 
            text-transform: uppercase; 
        }

        .hero-location { 
            color: rgba(255,255,255,0.8); 
            font-size: 1.3em; 
            margin-bottom: 50px;
            font-weight: 300;
        }

        /* Refined Countdown Box */
        .ironman-countdown {
            background: rgba(139, 0, 0, 0.15);
            border: 1px solid rgba(220, 20, 60, 0.4);
            border-radius: 20px; 
            padding: 45px; 
            margin: 50px auto;
            max-width: 800px;
            backdrop-filter: blur(15px);
            box-shadow: 
                0 20px 40px rgba(0,0,0,0.3),
                inset 0 0 30px rgba(220, 20, 60, 0.05);
        }

        .countdown-title { 
            color: #fff; 
            font-size: 2.8em; 
            margin-bottom: 25px; 
            display: flex; 
            align-items: center; 
            justify-content: center; 
            gap: 25px; 
            font-weight: 800; 
        }

        .ironman-logo { 
            width: 75px; 
            height: 75px; 
            background: linear-gradient(45deg, #dc143c, #ff0000, #8b0000); 
            border-radius: 50%; 
            display: flex; 
            align-items: center; 
            justify-content: center; 
            font-weight: 900; 
            color: #fff; 
            font-size: 1.5em; 
            box-shadow: 
                0 0 25px rgba(220, 20, 60, 0.5),
                inset 0 0 10px rgba(255, 255, 255, 0.1);
        }

        .countdown-details { 
            color: rgba(255,255,255,0.95); 
            font-size: 1.4em; 
            line-height: 2; 
        }

        .hero-tracking-link { 
            background: rgba(0,0,0,0.5); 
            padding: 18px 25px; 
            border-radius: 12px; 
            margin-top: 25px; 
            font-size: 1em; 
            border: 1px solid rgba(220, 20, 60, 0.3); 
            color: rgba(255,255,255,0.9);
            transition: all 0.3s ease;
        }

        .hero-tracking-link:hover {
            border-color: rgba(220, 20, 60, 0.6);
            background: rgba(0,0,0,0.7);
        }

        /* Stats Grid */
        .stats-grid { 
            display: grid; 
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); 
            gap: 30px; 
            max-width: 1200px; 
            margin: 80px auto; 
            padding: 0 20px; 
        }

        .stat-card { 
            background: linear-gradient(135deg, rgba(220,20,60,0.08) 0%, rgba(0,0,0,0.4) 100%); 
            padding: 45px 35px; 
            border-radius: 20px; 
            text-align: center; 
            border: 1px solid rgba(220,20,60,0.2); 
            transition: all 0.4s ease;
            backdrop-filter: blur(10px);
        }

        .stat-card:hover { 
            transform: translateY(-8px); 
            border-color: rgba(220, 20, 60, 0.5); 
            box-shadow: 0 25px 50px rgba(220,20,60,0.15); 
        }

        .stat-number { 
            font-size: 3.8em; 
            font-weight: 900; 
            color: #dc143c; 
            margin-bottom: 15px; 
            text-shadow: 0 0 20px rgba(220,20,60,0.6); 
        }

        .stat-label { 
            font-size: 1.2em; 
            color: rgba(255,255,255,0.9); 
            text-transform: uppercase; 
            letter-spacing: 2px; 
            font-weight: 600; 
        }

        /* Section Styling */
        .personal-records, .race-history {
            background: linear-gradient(135deg, rgba(220,20,60,0.03) 0%, rgba(0,0,0,0.8) 100%);
            margin: 60px 20px; 
            max-width: 1200px; 
            margin-left: auto; 
            margin-right: auto;
            border-radius: 25px; 
            padding: 60px 50px; 
            border: 1px solid rgba(220,20,60,0.2);
            backdrop-filter: blur(10px);
        }

        .section-title { 
            font-size: 2.8em; 
            color: #fff; 
            margin-bottom: 50px; 
            text-align: center; 
            font-weight: 800; 
            text-shadow: 0 0 15px rgba(220,20,60,0.5); 
            text-transform: uppercase; 
            letter-spacing: 3px; 
        }

        .pr-grid { 
            display: grid; 
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); 
            gap: 30px; 
            margin: 50px 0; 
        }

        .pr-card { 
            background: linear-gradient(135deg, rgba(26,0,0,0.8) 0%, rgba(51,0,0,0.6) 50%, rgba(220,20,60,0.8) 100%); 
            padding: 35px 30px; 
            border-radius: 18px; 
            color: #fff; 
            text-align: center; 
            border: 1px solid rgba(220,20,60,0.4); 
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
        }

        .pr-card:hover { 
            transform: translateY(-5px) scale(1.02); 
            box-shadow: 0 15px 35px rgba(220,20,60,0.2);
        }

        .pr-distance { 
            font-size: 1.5em; 
            font-weight: 700; 
            margin-bottom: 15px; 
        }

        .pr-time { 
            font-size: 2.1em; 
            font-weight: 900; 
            color: #fff; 
            text-shadow: 0 0 15px rgba(220,20,60,0.8); 
            margin-bottom: 12px; 
        }

        .pr-date { 
            font-size: 0.9em; 
            opacity: 0.8; 
            color: rgba(255,255,255,0.7); 
        }

        /* Refined Tracking Section */
        .ironman-prediction { 
            background: linear-gradient(135deg, rgba(139,0,0,0.7) 0%, rgba(220,20,60,0.6) 50%, rgba(255,0,0,0.7) 100%); 
            margin: 60px 20px; 
            max-width: 1200px; 
            margin-left: auto; 
            margin-right: auto; 
            border-radius: 25px; 
            padding: 70px 50px; 
            color: #fff; 
            text-align: center; 
            border: 1px solid rgba(255,255,255,0.2);
            backdrop-filter: blur(15px);
            box-shadow: 0 30px 60px rgba(0,0,0,0.4);
        }

        .prediction-title { 
            font-size: 2.8em; 
            margin-bottom: 40px; 
            font-weight: 900; 
            text-transform: uppercase; 
            letter-spacing: 3px; 
            text-shadow: 2px 2px 6px rgba(0,0,0,0.5);
        }

       .race-table { 
            width: 100%; 
            border-collapse: collapse; 
            margin-top: 40px; 
            background: rgba(0,0,0,0.4); 
            border-radius: 15px; 
            overflow: hidden;
            backdrop-filter: blur(10px);
        }

        .race-table th { 
            background: linear-gradient(135deg, rgba(220,20,60,0.8) 0%, rgba(139,0,0,0.8) 100%); 
            color: #fff; 
            padding: 20px 15px; 
            font-weight: 700; 
            text-align: left; 
            text-transform: uppercase; 
            letter-spacing: 1px; 
            font-size: 0.9em; 
        }

        .race-table td { 
            padding: 18px 15px; 
            border-bottom: 1px solid rgba(220, 20, 60, 0.15); 
            color: rgba(255,255,255,0.9); 
        }

        .race-table tr:hover { 
            background: rgba(220,20,60,0.08); 
        }

        .race-table tr:active,
        .race-table tr:focus {
            background: rgba(220,20,60,0.15);
            outline: none;
        }

        /* Enhanced mobile table interaction */
        @media (max-width: 768px) {
            .race-table tr {
                transition: background-color 0.2s ease;
            }
            
            .race-table tr:hover,
            .race-table tr:active,
            .race-table tr:focus {
                background: rgba(220,20,60,0.12);
            }
        }

        .race-name { 
            font-weight: 700; 
            color: #fff; 
        }

        .race-time { 
            font-weight: 900; 
            color: #dc143c; 
            text-shadow: 0 0 8px rgba(220,20,60,0.5); 
        }

        .footer { 
            text-align: center; 
            padding: 80px 40px; 
            color: rgba(255,255,255,0.7); 
            font-size: 1.1em; 
            line-height: 1.8; 
            border-top: 1px solid rgba(220,20,60,0.2); 
        }

        /* Mobile Responsive */
        @media (max-width: 768px) {
            .hero-section { padding: 60px 0; }
            .hero-title { font-size: 3.2em; letter-spacing: 2px; }
            .hero-location { font-size: 1.2em; }
            .profile-image { width: 180px; height: 180px; margin-bottom: 30px; }
            .ironman-countdown { padding: 35px 25px; }
            .countdown-title { font-size: 2.2em; flex-direction: column; gap: 20px; }
            .ironman-logo { width: 65px; height: 65px; font-size: 1.3em; }
            .stats-grid { grid-template-columns: 1fr 1fr; gap: 20px; margin: 60px auto; }
            .stat-card { padding: 35px 25px; }
            .stat-number { font-size: 3.2em; }
            .personal-records, .race-history { margin: 40px 15px; padding: 40px 30px; }
            .section-title { font-size: 2.2em; margin-bottom: 40px; }
            .pr-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
            .ironman-prediction { margin: 40px 15px; padding: 50px 30px; }
            .prediction-title { font-size: 2.2em; }
            .brand-logo { width: 120px; height: 120px; top: 20px; right: 20px; }
        }

        @media (max-width: 480px) {
            .brand-logo{ display: none;}
            .hero-title { font-size: 2.6em; }
            .profile-image { width: 160px; height: 160px; }
            .stats-grid { grid-template-columns: 1fr; }
            .pr-grid { grid-template-columns: 1fr; }
            .race-history { padding: 40px 25px; }
            .race-table { font-size: 0.8em; }
            .race-table th:nth-child(2), .race-table td:nth-child(2) { display: none; }
            .race-table th:nth-child(5), .race-table td:nth-child(5) { display: none; }
            .race-table th:nth-child(6), .race-table td:nth-child(6) { display: none; }
        }