
.ssr-full-page-restriction {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #021812;
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(255, 255, 255, 0.05) 0%, transparent 50%),
        linear-gradient(45deg, #021812 0%, #034025 50%, #021812 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999999;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    overflow: hidden;
}

.ssr-restriction-container {
    background: rgb(4 159 130 / 18%);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 50px 40px;
    text-align: center;
    max-width: 480px;
    margin: 20px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
    animation: ssr-fadeInUp 0.8s ease-out;
}

.ssr-restriction-icon {
    font-size: 80px;
    margin-bottom: 24px;
    display: inline-block;
    animation: ssr-bounce 2s ease-in-out infinite;
}

.ssr-restriction-container h2 {
    color: #021812;
    margin: 0 0 20px 0;
    font-size: 32px;
    font-weight: 700;
    line-height: 1.2;
}

.ssr-restriction-text {
    color: #afba9e;
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 30px;
}

.ssr-device-info {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #021812, #034025);
    color: white;
    font-size: 14px;
    font-weight: 600;
    padding: 12px 20px;
    border-radius: 50px;
    box-shadow: 0 4px 12px rgba(2, 24, 18, 0.3);
}

.ssr-restriction-message {
    background: linear-gradient(135deg, #021812 0%, #034025 50%, #021812 100%);
    color: white;
    border-radius: 20px;
    padding: 40px 30px;
    margin: 20px 0;
    text-align: center;
    font-size: 18px;
    line-height: 1.6;
    box-shadow: 0 20px 40px rgba(2, 24, 18, 0.4);
    animation: ssr-slideInScale 0.6s ease-out;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.ssr-restriction-message::before {
    content: '🖥️';
    display: block;
    font-size: 64px;
    margin-bottom: 20px;
    animation: ssr-pulse 2s infinite;
}

body.ssr-content-restricted {
    overflow: hidden;
    height: 100vh;
}

@keyframes ssr-fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes ssr-slideInScale {
    from {
        opacity: 0;
        transform: translateY(-30px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes ssr-bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    10% {
        transform: translateY(-10px);
    }
    30% {
        transform: translateY(-5px);
    }
    60% {
        transform: translateY(-3px);
    }
}

@keyframes ssr-pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@media (max-width: 768px) {
    .ssr-restriction-container {
        padding: 40px 30px;
        margin: 15px;
        max-width: 90%;
    }
    
    .ssr-restriction-icon {
        font-size: 64px;
    }
    
    .ssr-restriction-container h2 {
        font-size: 28px;
    }
    
    .ssr-restriction-text {
        font-size: 16px;
    }
    
    .ssr-restriction-message {
        margin: 15px;
        padding: 30px 20px;
        font-size: 16px;
    }
}
        