:root {
    --primary-color: #8cc63f; /* Green from logo */
    --secondary-color: #c01b7a; /* Deep Pink/Magenta */
    --accent-color: #fca016; /* Orange from logo */
    --bg-color: #893784; /* Purple background from user image */
    --bg-darker: #5b2157; /* Darker purple for gradient */
    --text-color: #ffffff;
    --glass-bg: rgba(255, 255, 255, 0.12);
    --glass-border: rgba(255, 255, 255, 0.25);
}

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

body {
    font-family: 'Outfit', sans-serif;
    background: linear-gradient(135deg, var(--bg-darker) 0%, var(--bg-color) 50%, var(--bg-darker) 100%);
    background-size: 200% 200%;
    animation: gradientBG 15s ease infinite;
    color: var(--text-color);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    position: relative;
}

@keyframes gradientBG {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Dynamic Background */
.background-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.6;
    animation: float 20s infinite ease-in-out alternate;
}

.shape-1 {
    width: 50vw;
    height: 50vw;
    max-width: 600px;
    max-height: 600px;
    background: var(--primary-color);
    top: -15%;
    left: -10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 60vw;
    height: 60vw;
    max-width: 700px;
    max-height: 700px;
    background: var(--secondary-color);
    bottom: -20%;
    right: -10%;
    animation-delay: -5s;
}

.shape-3 {
    width: 40vw;
    height: 40vw;
    max-width: 400px;
    max-height: 400px;
    background: var(--accent-color);
    top: 30%;
    left: 45%;
    transform: translate(-50%, -50%);
    opacity: 0.5;
    animation-delay: -10s;
}

@keyframes float {
    0% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(5%, -5%) scale(1.1); }
    66% { transform: translate(-3%, 4%) scale(0.9); }
    100% { transform: translate(0, 0) scale(1); }
}

/* Main Layout */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    z-index: 1;
    perspective: 1200px;
}

header {
    margin-bottom: 3rem;
    animation: fadeInDown 1s ease-out;
}

.logo {
    height: 140px; /* Increased slightly for better visibility */
    object-fit: contain;
    filter: drop-shadow(0 4px 15px rgba(0, 0, 0, 0.3));
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.logo:hover {
    transform: scale(1.05) rotate(-2deg);
}

/* Glassmorphism Panel */
.glass-panel {
    background: var(--glass-bg);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid var(--glass-border);
    border-radius: 30px;
    padding: 4rem;
    text-align: center;
    max-width: 750px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    animation: fadeInUp 1s ease-out;
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
}

.glass-panel::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, transparent, rgba(255,255,255,0.1), transparent);
    transform: skewX(-25deg);
    animation: shine 8s infinite;
}

@keyframes shine {
    0% { left: -100%; }
    15% { left: 200%; }
    100% { left: 200%; }
}

.badge {
    display: inline-block;
    padding: 0.6rem 1.8rem;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    margin-bottom: 2.5rem;
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

h1 {
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    transform: translateZ(30px);
    color: #ffffff;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

h1 span {
    background: linear-gradient(135deg, var(--accent-color), #ffe57f);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

p {
    font-size: 1.25rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3.5rem;
    font-weight: 400;
    transform: translateZ(20px);
}

/* Form */
.notify-form {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2rem;
    transform: translateZ(40px);
}

.notify-form input {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 16px;
    padding: 1.2rem 1.8rem;
    font-size: 1.05rem;
    color: white;
    width: 60%;
    outline: none;
    font-family: inherit;
    transition: all 0.3s ease;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
}

.notify-form input:focus {
    border-color: var(--primary-color);
    background: rgba(255, 255, 255, 0.25);
    box-shadow: 0 0 0 3px rgba(140, 198, 63, 0.4);
}

.notify-form input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.notify-form button {
    background: var(--primary-color);
    border: none;
    border-radius: 16px;
    padding: 1.2rem 2.2rem;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--bg-darker);
    cursor: pointer;
    font-family: inherit;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 15px rgba(140, 198, 63, 0.4);
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.notify-form button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(140, 198, 63, 0.6);
    background: #99d646;
}

.notify-form button:active {
    transform: translateY(1px);
}

.btn-icon {
    transition: transform 0.3s ease;
}

.notify-form button:hover .btn-icon {
    transform: translateX(4px);
}

.success-message {
    color: var(--primary-color);
    font-size: 1.15rem;
    margin-bottom: 2rem;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
    animation: fadeInUp 0.5s ease-out;
}

/* Social Links */
.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    transform: translateZ(20px);
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: white;
    text-decoration: none;
    font-size: 1.3rem;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.social-links a:hover {
    background: white;
    color: var(--bg-color);
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.social-links a:nth-child(1):hover { color: #1877f2; }
.social-links a:nth-child(2):hover { color: #e4405f; }
.social-links a:nth-child(3):hover { color: #1da1f2; }
.social-links a:nth-child(4):hover { color: #0a66c2; }

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    h1 {
        font-size: 3.2rem;
    }
    
    .glass-panel {
        padding: 2.5rem 1.5rem;
        margin: 1rem;
        border-radius: 20px;
    }
    
    .notify-form {
        flex-direction: column;
    }
    
    .notify-form input, .notify-form button {
        width: 100%;
        justify-content: center;
    }
    
    .shape-1, .shape-2, .shape-3 {
        filter: blur(60px);
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2.5rem;
    }
    
    p {
        font-size: 1.1rem;
    }
}
