@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;700&display=swap');
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Roboto', sans-serif;
            background: linear-gradient(135deg, #1a2a6c, #b21f1f, #fdbb2d);
            min-height: 100vh;
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 20px;
        }
        
        .container {
            width: 100%;
            max-width: 900px;
            background-color: rgba(255, 255, 255, 0.9);
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            overflow: hidden;
        }
        
        header {
            background: linear-gradient(to right, #2c3e50, #4a6491);
            color: white;
            padding: 20px;
            text-align: center;
            position: relative;
        }
        
        h1 {
            font-size: 2.5rem;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
            letter-spacing: 2px;
        }
        
        .hunter-association {
            font-style: italic;
            margin-top: 5px;
            color: #fdbb2d;
        }
        
        .license-container {
            display: flex;
            flex-wrap: wrap;
        }
        
        .license-card {
            flex: 1;
            min-width: 300px;
            padding: 30px;
            background: linear-gradient(to bottom right, #f8f9fa, #e9ecef);
            border-right: 2px dashed #ccc;
        }
        
        .license-details {
            flex: 2;
            min-width: 300px;
            padding: 30px;
            background: white;
        }
        
        .hunter-id {
            text-align: center;
            margin-bottom: 30px;
        }
        
        .hunter-id h2 {
            color: #2c3e50;
            font-size: 1.8rem;
            margin-bottom: 5px;
        }
        
        .hunter-number {
            font-size: 1.2rem;
            color: #b21f1f;
            font-weight: bold;
        }
        
        .hunter-photo {
            width: 180px;
            height: 180px;
            border: 5px solid #2c3e50;
            border-radius: 10px;
            margin: 0 auto 20px;
            overflow: hidden;
            background: linear-gradient(45deg, #fdbb2d, #b21f1f);
            display: flex;
            justify-content: center;
            align-items: center;
            color: white;
            font-weight: bold;
        }
        
        .hunter-type {
            text-align: center;
            margin: 20px 0;
            padding: 10px;
            background-color: #2c3e50;
            color: white;
            border-radius: 5px;
            font-weight: bold;
            font-size: 1.2rem;
        }
        
        .personal-info {
            margin-top: 30px;
        }
        
        .info-group {
            margin-bottom: 20px;
        }
        
        .info-label {
            font-weight: bold;
            color: #2c3e50;
            display: block;
            margin-bottom: 5px;
        }
        
        .info-value {
            font-size: 1.1rem;
            padding: 8px;
            background-color: #f8f9fa;
            border-radius: 5px;
            border-left: 4px solid #b21f1f;
        }
        
        .special-abilities {
            margin-top: 30px;
        }
        
        .abilities-list {
            list-style-type: none;
        }
        
        .abilities-list li {
            padding: 10px;
            margin-bottom: 10px;
            background-color: #f8f9fa;
            border-radius: 5px;
            border-left: 4px solid #fdbb2d;
        }
        
        .license-footer {
            background: linear-gradient(to right, #2c3e50, #4a6491);
            color: white;
            padding: 15px;
            text-align: center;
            font-size: 0.9rem;
        }
        
        .watermark {
            position: absolute;
            top: 20px;
            right: 20px;
            opacity: 0.1;
            font-size: 5rem;
            transform: rotate(-30deg);
            color: #fdbb2d;
        }
        
        @media (max-width: 768px) {
            .license-card {
                border-right: none;
                border-bottom: 2px dashed #ccc;
            }
        }