@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700;800&display=swap');

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    overflow-x: hidden;
}

/* Back Link */
.back-link {
    position: fixed;
    top: 20px;
    left: 20px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    padding: 10px 16px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    z-index: 100;
}

.back-link:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.2);
    transform: translateX(-4px);
}

.container {
    width: 90%;
    max-width: 1100px;
    min-height: 80vh;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    backdrop-filter: blur(20px);
    padding: 30px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
    position: relative;
    overflow: hidden;
}

.container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
}

/* Decorative Circle */
.circle {
    position: fixed;
    z-index: -1;
    background: linear-gradient(135deg, #e63946, #ff6b6b);
    height: 700px;
    width: 700px;
    border-radius: 50%;
    bottom: -200px;
    right: -200px;
    filter: blur(60px);
    opacity: 0.6;
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.6;
    }

    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

/* Navigation */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 30px;
    margin-bottom: 20px;
}

.nav-logo h2 {
    font-size: 28px;
    font-weight: 800;
    letter-spacing: 3px;
    background: linear-gradient(90deg, #fff, #e63946);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-list a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    transition: all 0.3s ease;
}

.nav-list a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #e63946;
    transition: width 0.3s ease;
}

.nav-list a:hover {
    color: #fff;
}

.nav-list a:hover::after {
    width: 100%;
}

/* Main Content */
main {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px;
    gap: 60px;
}

#content {
    flex: 1;
    max-width: 450px;
}

#content h2 {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    text-transform: uppercase;
    background: linear-gradient(135deg, #fff 0%, #e0e0e0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

#content p {
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 30px;
}

/* CTA Button */
.cta-button {
    display: inline-block;
    padding: 16px 40px;
    background: linear-gradient(135deg, #e63946, #ff6b6b);
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(230, 57, 70, 0.4);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(230, 57, 70, 0.6);
}

/* Image Section */
#image {
    flex: 1;
    text-align: center;
    position: relative;
}

#image img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.5));
    animation: float 3s ease-in-out infinite;
    transform-origin: center;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0) rotate(-5deg);
    }

    50% {
        transform: translateY(-20px) rotate(-5deg);
    }
}

/* Footer */
footer {
    text-align: center;
    padding: 20px;
    color: rgba(255, 255, 255, 0.4);
    font-size: 12px;
}

/* Responsive */
@media (max-width: 768px) {
    .back-link {
        top: 15px;
        left: 15px;
        padding: 8px 12px;
        font-size: 12px;
        backdrop-filter: blur(5px);
    }

    .container {
        width: 95%;
        max-width: 100%;
        min-height: auto;
        padding: 20px 15px;
        margin: 60px 0 20px;
        border-radius: 20px;
    }

    nav {
        flex-direction: column;
        gap: 15px;
        padding: 0 0 20px;
        margin-bottom: 20px;
    }

    .nav-list {
        gap: 15px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .nav-list a {
        font-size: 12px;
        padding: 5px 10px;
        border-radius: 15px;
        background: rgba(255, 255, 255, 0.05);
        /* subtle background for touch targets */
    }

    main {
        flex-direction: column-reverse;
        /* Image on top on mobile often looks better, or keep as is. Let's keep content first for context */
        padding: 0;
        gap: 40px;
        text-align: center;
    }

    #content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    #content h2 {
        font-size: 28px;
        margin-bottom: 15px;
    }

    #content p {
        font-size: 14px;
        margin-bottom: 25px;
        padding: 0 10px;
    }

    .cta-button {
        padding: 12px 30px;
        font-size: 12px;
    }

    #image img {
        width: 85%;
        max-width: 300px;
        margin-top: 10px;
    }

    .circle {
        width: 300px;
        height: 300px;
        bottom: -50px;
        right: -50px;
        filter: blur(40px);
    }
}