/* Generator-specific styles */

.generator-content {
    max-width: 600px;
    text-align: center;
}

.title {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #ff6b9d 0%, #c9356c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.subtitle {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 3rem;
    font-weight: 300;
}

.generator-form {
    margin-bottom: 2rem;
}

.input-label {
    display: block;
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 1rem;
    font-weight: 500;
}

.name-input {
    width: 100%;
    padding: 1rem 1.5rem;
    font-size: 1.1rem;
    border: 2px solid #ffd1dc;
    border-radius: 50px;
    outline: none;
    transition: all 0.3s ease;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: white;
    box-shadow: 0 2px 10px rgba(255, 107, 157, 0.1);
}

.name-input:focus {
    border-color: #ff6b9d;
    box-shadow: 0 4px 20px rgba(255, 107, 157, 0.2);
    transform: translateY(-2px);
}

.name-input::placeholder {
    color: #ccc;
}

.generate-btn {
    width: 100%;
    margin-top: 1.5rem;
    padding: 1.2rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    background: linear-gradient(135deg, #ff6b9d 0%, #c9356c 100%);
    border: none;
    color: white;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 157, 0.3);
}

.generate-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(255, 107, 157, 0.4);
}

.generate-btn:active {
    transform: translateY(-1px);
}

.generate-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* Result Section */
.result-section {
    margin-top: 2rem;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.result-label {
    font-size: 1.3rem;
    color: #ff6b9d;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.link-container {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.generated-link {
    flex: 1;
    padding: 1rem 1.5rem;
    font-size: 0.95rem;
    border: 2px solid #ffd1dc;
    border-radius: 50px;
    outline: none;
    background: #fff;
    color: #666;
    font-family: 'Courier New', monospace;
}

.copy-btn {
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
    border: none;
    color: white;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
    white-space: nowrap;
}

.copy-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(76, 175, 80, 0.4);
}

.copy-btn.copied {
    background: linear-gradient(135deg, #2196F3 0%, #1976D2 100%);
}

.instruction-text {
    font-size: 0.95rem;
    color: #888;
    margin-top: 1rem;
    line-height: 1.5;
}

.new-link-btn {
    margin-top: 2rem;
    padding: 0.8rem 2rem;
    font-size: 1rem;
    background: transparent;
    border: 2px solid #ff6b9d;
    color: #ff6b9d;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
}

.new-link-btn:hover {
    background: #ff6b9d;
    color: white;
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 768px) {
    .title {
        font-size: 2rem;
    }

    .subtitle {
        font-size: 1rem;
    }

    .link-container {
        flex-direction: column;
    }

    .copy-btn {
        width: 100%;
    }

    .generated-link {
        font-size: 0.85rem;
    }
}