        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Inter', sans-serif;
            background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
            min-height: 100vh;
            color: white;
            overflow-x: hidden;
        }
        
        /* Animated background particles */
        .particles {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 1;
        }
        
        .particle {
            position: absolute;
            width: 4px;
            height: 4px;
            background: #FC3323;
            border-radius: 50%;
            opacity: 0.3;
            animation: float 8s infinite ease-in-out;
        }
        
        @keyframes float {
            0%, 100% { transform: translateY(0px) rotate(0deg); opacity: 0.3; }
            50% { transform: translateY(-20px) rotate(180deg); opacity: 0.8; }
        }
        
        .main-container {
            position: relative;
            z-index: 2;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            padding: 40px 20px;
        }
        
        .header-section {
            text-align: center;
            margin-bottom: 60px;
        }
        
        .logo {
            width: 280px;
            height: auto;
            margin-bottom: 30px;
            filter: drop-shadow(0 10px 20px rgba(252, 51, 35, 0.3));
        }
        
        .main-title {
            font-size: 3.5rem;
            font-weight: 800;
            color: white;
            margin-bottom: 20px;
            text-shadow: 0 5px 15px rgba(0,0,0,0.5);
        }
        
        .subtitle {
            font-size: 1.3rem;
            color: #cccccc;
            font-weight: 400;
            max-width: 600px;
            margin: 0 auto;
            line-height: 1.6;
        }
        
        .countries-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .country-card {
            background: rgba(255, 255, 255, 0.05);
            border: 2px solid rgba(255, 255, 255, 0.1);
            border-radius: 20px;
            padding: 40px 30px;
            text-align: center;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            cursor: pointer;
            position: relative;
            overflow: hidden;
            backdrop-filter: blur(10px);
        }
        
        .country-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(252, 51, 35, 0.1), transparent);
            transition: left 0.5s;
        }
        
        .country-card:hover::before {
            left: 100%;
        }
        
        .country-card:hover {
            transform: translateY(-10px) scale(1.02);
            border-color: #FC3323;
            box-shadow: 0 20px 40px rgba(252, 51, 35, 0.3);
            background: rgba(252, 51, 35, 0.1);
        }
        
        .flag-container {
            position: relative;
            margin-bottom: 25px;
            display: inline-block;
        }
        
        .flag {
            width: 120px;
            height: 80px;
            object-fit: cover;
            border-radius: 15px;
            box-shadow: 0 8px 25px rgba(0,0,0,0.3);
            transition: all 0.3s ease;
        }
        
        .country-card:hover .flag {
            transform: scale(1.1);
            box-shadow: 0 15px 35px rgba(252, 51, 35, 0.4);
        }
        
        .country-name {
            font-size: 1.8rem;
            font-weight: 700;
            color: white;
            margin-bottom: 10px;
            transition: color 0.3s ease;
        }
        
        .country-card:hover .country-name {
            color: #FC3323;
        }
        
        .country-description {
            font-size: 1rem;
            color: #cccccc;
            line-height: 1.5;
            margin-bottom: 20px;
        }
        
        .explore-btn {
            background: linear-gradient(135deg, #FC3323 0%, #ff4757 100%);
            color: white;
            border: none;
            padding: 12px 30px;
            border-radius: 25px;
            font-weight: 600;
            font-size: 1rem;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .explore-btn:hover {
            background: linear-gradient(135deg, #e6021a 0%, #ff3742 100%);
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(252, 51, 35, 0.4);
        }
        
        .stats-section {
            text-align: center;
            margin-top: 80px;
            padding: 40px 20px;
            background: rgba(255, 255, 255, 0.02);
            border-radius: 20px;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            gap: 30px;
            margin-top: 30px;
        }
        
        .stat-item {
            text-align: center;
        }
        
        .stat-number {
            font-size: 2.5rem;
            font-weight: 800;
            color: #FC3323;
            display: block;
        }
        
        .stat-label {
            font-size: 1rem;
            color: #cccccc;
            margin-top: 5px;
        }
        
        .back-btn {
            position: absolute;
            top: 30px;
            left: 30px;
            background: rgba(255, 255, 255, 0.1);
            border: 2px solid rgba(255, 255, 255, 0.2);
            color: white;
            padding: 12px 20px;
            border-radius: 15px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
        }
        
        .back-btn:hover {
            background: rgba(252, 51, 35, 0.2);
            border-color: #FC3323;
            color: white;
            transform: translateX(-5px);
        }
        
        /* Responsive Design */
        @media (max-width: 768px) {
            .main-title {
                font-size: 2.5rem;
            }
            
            .subtitle {
                font-size: 1.1rem;
                padding: 0 20px;
            }
            
            .countries-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            
            .country-card {
                padding: 30px 20px;
            }
            
            .flag {
                width: 100px;
                height: 67px;
            }
            
            .back-btn {
                top: 20px;
                left: 20px;
                padding: 10px 15px;
                font-size: 0.9rem;
            }
        }
        
        @media (max-width: 480px) {
            .main-title {
                font-size: 2rem;
            }
            
            .logo {
                width: 220px;
            }
        }
