        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            background-color: #3a5393;
            color: white;
            font-family: 'Arial', sans-serif;
            width: 1920px;
            height: 1080px;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .container {
            width: 1800px;
            height: 1000px;
            text-align: center;
            display: flex;
            flex-direction: column;
        }
        
        h1 {
            font-size: 56px;
            font-weight: bold;
            margin-bottom: 25px;
            letter-spacing: 3px;
            line-height: 1.2;
        }
        
        .top-section {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 25px;
            margin-bottom: 25px;
            height: 280px;
        }
        
        .left-panel {
            display: flex;
            flex-direction: column;
            gap: 15px;
            height: 100%;
            justify-content: space-between;
        }
        
        .info-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 15px;
            flex: 1;
        }
        
        .info-item {
            background-color: rgba(255, 255, 255, 0.1);
            padding: 18px;
            border-radius: 8px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        
        .info-label {
            font-size: 13px;
            font-weight: bold;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            margin-bottom: 8px;
            opacity: 0.9;
        }
        
        .info-value {
            font-size: 16px;
            font-weight: bold;
        }
        
        .time-control {
            background-color: rgba(255, 255, 255, 0.1);
            padding: 18px;
            border-radius: 8px;
            flex: 1;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        
        .round-times-section {
            background-color: white;
            color: #3a5393;
            padding: 25px 35px;
            border-radius: 8px;
            height: 100%;
        }
        
        .round-times-section h2 {
            font-size: 22px;
            font-weight: bold;
            margin-bottom: 18px;
            text-transform: uppercase;
            letter-spacing: 2px;
        }
        
        .round-times-table table {
            width: 100%;
            border-collapse: collapse;
        }
        
        .round-times-table td {
            padding: 9px 15px;
            font-size: 17px;
            font-weight: bold;
            border-bottom: 2px solid #3a5393;
        }
        
        .round-times-table td:first-child {
            text-align: left;
        }
        
        .round-times-table td:last-child {
            text-align: right;
        }
        
        .round-times-table tr:last-child td {
            border-bottom: none;
        }
        
        .prizes-section {
            margin-bottom: 20px;
        }
        
        .prizes-section h2 {
            font-size: 26px;
            font-weight: bold;
            margin-bottom: 18px;
            text-transform: uppercase;
            letter-spacing: 2px;
        }
        
        .prize-tables {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 25px;
            height: 280px;
        }
        
        .prize-table {
            display: flex;
            flex-direction: column;
            height: 100%;
        }
        
        .prize-table h3 {
            font-size: 20px;
            font-weight: bold;
            margin-bottom: 12px;
            letter-spacing: 1px;
        }
        
        .prize-table table {
            width: 100%;
            border-collapse: collapse;
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 8px;
            overflow: hidden;
            flex: 1;
        }
        
        .prize-table td {
            padding: 8px 20px;
            font-size: 16px;
            font-weight: bold;
            border-bottom: 1px solid rgba(255, 255, 255, 0.2);
        }
        
        .prize-table td:first-child {
            text-align: left;
        }
        
        .prize-table td:last-child {
            text-align: right;
            font-size: 17px;
        }
        
        .prize-table tr:last-child td {
            border-bottom: none;
        }
        
        .bottom-section {
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 25px;
        }
        
        .byes {
            background-color: rgba(255, 255, 255, 0.1);
            padding: 18px;
            border-radius: 8px;
            font-size: 14px;
            font-style: italic;
            font-weight: bold;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .directors {
            background-color: rgba(255, 255, 255, 0.1);
            padding: 18px;
            border-radius: 8px;
            font-size: 15px;
            line-height: 1.8;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        
        .directors-title {
            font-size: 16px;
            font-weight: bold;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            margin-bottom: 10px;
        }
        
        .directors strong {
            font-weight: bold;
        }