/* SkySoog Thank You Page Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', Arial, sans-serif;
}

body {
    background-color: #0a192f;
    color: #ffffff;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.background-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.background-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(10, 25, 47, 0.7);
    z-index: -1;
}

.content {
    max-width: 800px;
    padding: 40px 20px;
    background-color: rgba(10, 25, 47, 0.8);
    border-radius: 15px;
    backdrop-filter: blur(8px);
    margin: 20px;
    z-index: 1;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

p {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #e6f1ff;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: transparent;
    color: #ffffff;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 2px solid #4d90fe;
    margin-top: 20px;
    cursor: pointer;
}

.btn:hover {
    background-color: #4d90fe;
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.logo {
    max-width: 200px;
    margin-bottom: 30px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }
    
    p {
        font-size: 1rem;
    }
    
    .content {
        padding: 30px 15px;
        max-width: 90%;
    }
    
    .logo {
        max-width: 150px;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.8rem;
    }
    
    p {
        font-size: 0.95rem;
        line-height: 1.5;
    }
    
    .btn {
        padding: 10px 25px;
        font-size: 0.9rem;
    }
    
    .content {
        padding: 25px 15px;
    }
}

/* RTL Support for Arabic */
.rtl {
    direction: rtl;
}

.rtl .btn {
    font-family: 'Cairo', Arial, sans-serif;
}

.rtl h1, .rtl p {
    font-family: 'Cairo', Arial, sans-serif;
}
