/* Offline Mode Styles */
.offline-mode-body {
    margin: 0;
    padding: 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: #000;
    color: #fff;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.offline-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

.offline-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 2;
}

.offline-background-mobile {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
    display: none;
}

.offline-background-mobile::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 2;
}

.offline-container {
    position: relative;
    z-index: 3;
    text-align: center;
    display: flex;
    width: 852px;
    height: 682px;
    flex-direction: column;
    justify-content: center;
    flex-shrink: 0;
}

.offline-logo {
    margin-bottom: 2rem;
}

.offline-logo img {
    max-width: 200px;
    height: auto;
}

.offline-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #fff;
}

.offline-content {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    color: #ccc;
}

.offline-content p {
    margin-bottom: 1rem;
}

.offline-cta {
    display: flex;
    width: 346px;
    padding: 0px 44px;
    justify-content: center;
    align-items: center;
    gap: 12px;
    border-radius: 8px;
    background: #25BD26;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    margin: 0 auto;
    border: none;
    cursor: pointer;
    min-height: 48px;
}

.offline-cta:hover {
    background: #1ea51f;
    color: #ffffff;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 189, 38, 0.3);
}

/* Abstract background design */
.abstract-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.abstract-bg::before,
.abstract-bg::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: linear-gradient(135deg, #00ff88, #00cc6a);
    opacity: 0.1;
}

.abstract-bg::before {
    top: -150px;
    left: -150px;
    animation: float 6s ease-in-out infinite;
}

.abstract-bg::after {
    bottom: -150px;
    right: -150px;
    animation: float 6s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg); 
    }
    50% { 
        transform: translateY(-20px) rotate(180deg); 
    }
}

/* Responsive design */
@media (max-width: 768px) {
    .offline-background {
        display: none;
    }
    
    .offline-background-mobile {
        display: block;
    }
    
    .offline-container {
        width: 100%;
        height: auto;
        padding: 2rem 1rem;
        margin: 1rem;
    }
    
    .offline-title {
        font-size: 2rem;
    }
    
    .offline-content {
        font-size: 1rem;
    }
    
    .offline-cta {
        width: 100%;
        max-width: none;
        padding: 0px 32px;
    }
    
    .offline-logo img {
        max-width: 150px;
    }
}

@media (max-width: 480px) {
    .offline-container {
        padding: 1rem;
    }
    
    .offline-title {
        font-size: 1.75rem;
    }
    
    .offline-cta {
        padding: 0px 24px;
        font-size: 0.9rem;
    }
}