/* Section Title */
        .section-title {
            text-align: center;
            padding: 60px 20px 50px;
            font-size: 2.5rem;
        }

        .section-title .highlight {
            color: #fbbf24;
        }

        /* Featured Event */
        .featured-event {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            align-items: center;
            margin-bottom: 60px;
            background: linear-gradient(135deg, #fef3c7 0%, white 100%);
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }

        .featured-event-image {
            height: 400px;
            margin-left: 10px;
            background-image: url('international-1.jpeg');
            border-radius: 12px;
            background-size: cover;
            background-position: center;
            background-color: #e5e7eb;
        }

        .featured-event-content {
            padding: 40px;
        }

        .event-badge {
            display: inline-block;
            background: #fbbf24;
            color: #000;
            padding: 6px 14px;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 600;
            margin-bottom: 15px;
        }

        .featured-event-content h3 {
            font-size: 2rem;
            color: #000;
            margin-bottom: 15px;
        }

        .event-date {
            font-size: 1.1rem;
            color: #374151;
            margin-bottom: 8px;
            font-weight: 500;
        }

        .event-location {
            font-size: 1.1rem;
            color: #374151;
            margin-bottom: 15px;
            font-weight: 500;
        }

        .event-description {
            font-size: 1rem;
            color: #4b5563;
            line-height: 1.8;
            margin-bottom: 25px;
        }

        .btn-primary {
            background: #fbbf24;
            color: #000;
            padding: 12px 40px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: bold;
            font-size: 1rem;
            display: inline-block;
            transition: all 0.3s;
            cursor: pointer;
            border: none;
        }

        .btn-primary:hover {
            background: #f59e0b;
            transform: scale(1.05);
        }

        .tournament-images{
            margin: 10px;
            border-radius: 12px;
            justify-self: center;
        }
        .tour-image{
            border-radius: 12px;
            height: 130px;
            width: auto;
        }
        /* Events Grid */
        .events-section-title {
            text-align: center;
            font-size: 1.8rem;
            margin-top: 60px;
            margin-bottom: 30px;
            color: #000;
        }

        .events-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 25px;
            margin-bottom: 60px;
        }

        .event-card {
            background: white;
            border: 1px solid #e5e7eb;
            border-radius: 12px;
            overflow: hidden;
            transition: all 0.3s ease;
            box-shadow: 0 2px 8px rgba(0,0,0,0.08);
        }

        .event-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 24px rgba(0,0,0,0.12);
        }

        .event-card-header {
            background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
            padding: 15px 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .event-category {
            background: rgba(0,0,0,0.2);
            color: white;
            padding: 4px 12px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
            text-transform: uppercase;
        }

        .event-date-small {
            background: white;
            color: #f59e0b;
            padding: 4px 12px;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 600;
        }

        .event-card h4 {
            font-size: 1.3rem;
            color: #000;
            padding: 20px 20px 10px;
            margin: 0;
        }

        .event-time,
        .event-location-small {
            padding: 0 20px;
            font-size: 0.95rem;
            color: #374151;
            margin: 5px 0;
        }

        .event-details {
            padding: 0 20px;
            font-size: 0.95rem;
            color: #4b5563;
            line-height: 1.6;
            margin-bottom: 15px;
        }

        .btn-secondary {
            background: #f3f4f6;
            color: #000;
            padding: 10px 20px;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 600;
            font-size: 0.95rem;
            display: inline-block;
            transition: all 0.3s;
            cursor: pointer;
            border: 2px solid #fbbf24;
            margin: 0 20px 20px;
            width: calc(100% - 40px);
            text-align: center;
        }

        .btn-secondary:hover {
            background: #fbbf24;
            color: #000;
        }

        /* Event Info Section */
        .event-info-section {
            background: #f9fafb;
            padding: 50px;
            border-radius: 15px;
            margin-top: 60px;
            margin-bottom: 60px;
        }

        .event-info-section h3 {
            text-align: center;
            font-size: 2rem;
            margin-bottom: 40px;
            color: #000;
        }

        .info-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
        }

        .info-item {
            text-align: center;
        }

        .info-icon {
            font-size: 3rem;
            margin-bottom: 15px;
        }

        .info-item h4 {
            font-size: 1.2rem;
            color: #000;
            margin-bottom: 10px;
        }

        .info-item p {
            color: #4b5563;
            font-size: 0.95rem;
            line-height: 1.6;
        }

        /* Footer */
        footer {
            background: #000;
            color: white;
            text-align: center;
            padding: 30px 20px;
            margin-top: 60px;
        }

        /* Mobile Responsiveness */
        @media (max-width: 768px) {
            .featured-event {
                grid-template-columns: 1fr;
                gap: 0;
                margin-bottom: 40px;
            }

            .featured-event-image {
                height: 250px;
            }

            .featured-event-content {
                padding: 30px 20px;
            }

            .featured-event-content h3 {
                font-size: 1.5rem;
            }

            .section-title {
                font-size: 2rem;
                padding: 40px 20px 30px;
            }

            .events-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .event-info-section {
                padding: 30px 20px;
            }

            .event-info-section h3 {
                font-size: 1.5rem;
            }

            .info-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
        }