/* Impressum Modal Specific Styles */
#impressum-modal .modal-content {
    max-width: 800px;
    max-height: 90vh;
    overflow-y: auto;
}

.company-info-section {
    padding: 1rem 0;
}

.company-logo {
    text-align: center;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
}

.impressum-logo {
    height: 60px;
    width: auto;
    object-fit: contain;
    filter: brightness(1.1) contrast(1.1);
    transition: all 0.3s ease;
}

.impressum-logo:hover {
    filter: brightness(1.3) contrast(1.2);
    transform: scale(1.05);
}

.company-details h3 {
    color: white;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-align: center;
    background: linear-gradient(135deg, #0271FC, #74b9ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.info-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.info-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.05), transparent);
    transition: left 0.5s ease;
}

.info-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(2, 113, 252, 0.3);
    transform: translateY(-3px);
}

.info-item:hover::before {
    left: 100%;
}

.info-item h4 {
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid rgba(2, 113, 252, 0.3);
    background: linear-gradient(135deg, #0271FC, #74b9ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.info-item p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0.8rem;
}

.info-item p:last-child {
    margin-bottom: 0;
}

.info-item p strong {
    color: white;
    font-weight: 600;
}

.info-item a {
    color: #74b9ff;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
}

.info-item a:hover {
    color: #0271FC;
    text-decoration: underline;
}

.platform-highlight {
    background: linear-gradient(135deg, rgba(2, 113, 252, 0.1), rgba(116, 185, 255, 0.05));
    border: 1px solid rgba(2, 113, 252, 0.2);
    border-radius: 12px;
    padding: 2rem;
    margin: 2rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.platform-highlight::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #0271FC, #74b9ff, #0271FC);
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    50% { transform: translateX(100%); }
    100% { transform: translateX(100%); }
}

.platform-highlight h4 {
    color: white;
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #0271FC, #74b9ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.platform-highlight p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    line-height: 1.7;
    margin: 0;
}

/* Modal Actions */
#impressum-modal .modal-actions {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
    margin-top: 25px;
    align-items: center;
}

#impressum-modal .modal-actions .btn {
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.4;
    height: 48px;
    transition: all 0.3s ease;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 1px solid transparent;
    box-sizing: border-box;
    text-decoration: none;
}

#impressum-modal .modal-actions .btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.8);
}

#impressum-modal .modal-actions .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    transform: translateY(-1px);
}

#impressum-modal .modal-actions .btn-primary {
    background: linear-gradient(135deg, #0271FC, #74b9ff);
    border: 1px solid transparent;
    color: white;
    box-shadow: 0 4px 15px rgba(2, 113, 252, 0.3);
    transition: all 0.3s ease;
}

#impressum-modal .modal-actions .btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 25px rgba(2, 113, 252, 0.4);
}

/* Responsive Design */
@media (max-width: 768px) {
    #impressum-modal .modal-content {
        max-width: 95vw;
        margin: 10px;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .company-details h3 {
        font-size: 1.5rem;
    }
    
    .info-item {
        padding: 1rem;
    }
    
    .info-item h4 {
        font-size: 1.1rem;
    }
    
    .platform-highlight {
        padding: 1.5rem;
        margin: 1.5rem 0;
    }
    
    .platform-highlight h4 {
        font-size: 1.2rem;
    }
    
    #impressum-modal .modal-actions {
        flex-direction: column;
    }
    
    #impressum-modal .modal-actions .btn {
        justify-content: center;
        width: 100%;
    }
}

@media (max-width: 480px) {
    .company-logo {
        padding: 1rem;
    }
    
    .impressum-logo {
        height: 48px;
    }
    
    .company-details h3 {
        font-size: 1.3rem;
        margin-bottom: 1.5rem;
    }
    
    .info-item {
        padding: 0.8rem;
    }
    
    .info-item h4 {
        font-size: 1rem;
        margin-bottom: 0.8rem;
    }
    
    .info-item p {
        font-size: 0.9rem;
    }
    
    .platform-highlight {
        padding: 1rem;
    }
    
    .platform-highlight h4 {
        font-size: 1.1rem;
    }
    
    .platform-highlight p {
        font-size: 0.9rem;
        line-height: 1.6;
    }
} 