@keyframes oceanofpdf-gradient-move {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

@keyframes oceanofpdf-float-gentle {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-8px); }
}

.oceanofpdf-info-v2 {
    max-width: auto;
    padding: 45px;
    margin: 40px auto;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 24px;
    box-shadow: 0 15px 45px rgba(102, 126, 234, 0.3);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.oceanofpdf-info-v2:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 55px rgba(102, 126, 234, 0.4);
}

.oceanofpdf-gradient-border {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ffd700, #ff6b6b, #4ecdc4, #ffd700);
    background-size: 200% 100%;
    animation: oceanofpdf-gradient-move 6s ease infinite;
}

.oceanofpdf-icon {
    font-size: 56px;
    text-align: center;
    margin-bottom: 20px;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
    animation: oceanofpdf-float-gentle 3s ease-in-out infinite;
}

.oceanofpdf-title-v2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: white;
    font-weight: 700;
    text-align: center;
    letter-spacing: -0.5px;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.oceanofpdf-text-v2 {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 400;
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 12px;
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.3s ease;
}

.oceanofpdf-text-v2:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.25);
}

.oceanofpdf-box-v2 {
    background: rgba(255, 255, 255, 0.95);
    border-left: 5px solid #ff6b6b;
    padding: 25px;
    border-radius: 12px;
    font-size: 16px;
    margin: 30px 0;
    color: #1e293b;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    display: flex;
    gap: 15px;
    align-items: flex-start;
    transition: all 0.3s ease;
}

.oceanofpdf-box-v2:hover {
    transform: translateX(5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

.oceanofpdf-notice-icon {
    font-size: 28px;
    flex-shrink: 0;
}

.oceanofpdf-strong {
    color: #dc2626;
    font-weight: 700;
}

.oceanofpdf-muted-v2 {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.95);
    background: rgba(255, 255, 255, 0.12);
    padding: 22px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    gap: 15px;
    align-items: center;
    backdrop-filter: blur(8px);
}

.oceanofpdf-ethics-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    border-radius: 50%;
    font-size: 16px;
    font-weight: bold;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.4);
}

@media (max-width: 768px) {
    .oceanofpdf-info-v2 {
        padding: 30px 20px;  /* Reduced horizontal padding */
        margin: 20px 0;      /* No left/right margin */
        max-width: 100%;
        width: 100%;         /* Force 100% width */
        border-radius: 0;    /* Remove rounded corners */
    }
}
    
    .oceanofpdf-title-v2 {
        font-size: 28px;
    }
    
    .oceanofpdf-text-v2 {
        font-size: 16px;
        padding: 18px;
    }
    
    .oceanofpdf-box-v2 {
        flex-direction: column;
        gap: 12px;
    }
    
    .oceanofpdf-icon {
        font-size: 44px;
    }
}