/* Hook Generator Styles */
.generator-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.gradient-text {
    background: linear-gradient(45deg, #FF2D95, #00F2EA);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.generator-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    padding: 2rem;
    margin-bottom: 2rem;
}

.form-label {
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.form-control, .form-select {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    color: #ffffff;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-control:focus, .form-select:focus {
    background: rgba(255, 255, 255, 0.15);
    border-color: #FF2D95;
    box-shadow: 0 0 0 0.2rem rgba(255, 45, 149, 0.25);
    color: #ffffff;
}

.form-control::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.form-select option {
    background: #1a1a1a;
    color: #ffffff;
}

.form-text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
    margin-top: 0.5rem;
}

.generate-btn {
    background: linear-gradient(45deg, #FF2D95, #00F2EA);
    border: none;
    border-radius: 25px;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 45, 149, 0.3);
}

.generate-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 45, 149, 0.4);
}

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

.results-section {
    animation: fadeInUp 0.6s ease-out;
}

.results-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    padding: 2rem;
}

.results-title {
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-align: center;
}

.hooks-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.hook-item {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    position: relative;
    animation: fadeInUp 0.4s ease-out;
}

.hook-item:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-2px);
}

.hook-text {
    color: #ffffff;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    padding-right: 60px;
}

.copy-btn {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(45deg, #FF2D95, #00F2EA);
    border: none;
    border-radius: 20px;
    padding: 0.5rem 1rem;
    color: #ffffff;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(255, 45, 149, 0.3);
}

.copy-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(255, 45, 149, 0.4);
}

.copy-btn.copied {
    background: linear-gradient(45deg, #28a745, #20c997);
}

.spinner-border-sm {
    width: 1rem;
    height: 1rem;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .generator-title {
        font-size: 2rem;
    }
    
    .generator-card,
    .results-card {
        padding: 1.5rem;
    }
    
    .hook-text {
        padding-right: 0;
        margin-bottom: 1rem;
    }
    
    .copy-btn {
        position: static;
        margin-top: 1rem;
        width: 100%;
    }
}