        .domain-search-card {
            background: white;
            border-radius: 24px;
            padding: 2.5rem;
            box-shadow: 0 20px 60px rgba(0, 30, 82, 0.2);
            border: 1px solid rgba(0, 30, 82, 0.1);
            transition: all 0.3s ease;
        }
        
        @media (max-width: 768px) {
            .domain-search-card {
                padding: 1.5rem;
                border-radius: 20px;
            }
        }
        
        .search-input {
            transition: all 0.3s ease;
        }
        
        .search-input:focus {
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(251, 87, 45, 0.2);
        }
        
        .tld-badge {
            transition: all 0.3s ease;
            cursor: pointer;
        }
        
        .tld-badge:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(0, 30, 82, 0.15);
        }
        
        .feature-card {
            background: white;
            border-radius: 16px;
            padding: 2rem;
            box-shadow: 0 8px 30px rgba(0, 30, 82, 0.1);
            transition: all 0.3s ease;
        }
        
        .feature-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0, 30, 82, 0.15);
        }
        
        
        
        .feature-card:hover .feature-icon {
            transform: scale(1.1) rotate(5deg);
        }
        
        .result-card {
            animation: slideInResult 0.3s ease;
        }
        
        @keyframes slideInResult {
            from {
                opacity: 0;
                transform: translateY(10px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .pricing-table {
            background: white;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 8px 30px rgba(0, 30, 82, 0.1);
        }
        
        .pricing-row {
            border-bottom: 1px solid #e5e7eb;
            transition: background-color 0.3s ease;
        }
        
        .pricing-row:hover {
            background-color: #f9fafb;
        }
        
        .pricing-row:last-child {
            border-bottom: none;
        }
