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

body {
    font-family: 'Outfit', sans-serif;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
    background-color: #0f172a;
    overflow: hidden;
    touch-action: none;
    position: relative;
}

/* Animated Background Mesh */
.background-anim {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(-45deg, #ee7752, #e73c7e, #23a6d5, #23d5ab);
    background-size: 400% 400%;
    animation: gradientBG 15s ease infinite;
    z-index: -1;
    opacity: 0.8;
}

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

/* Glassmorphism Card */
.container {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 40px;
    width: 90%;
    max-width: 480px;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    text-align: center;
    animation: floatIn 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

/* Icon Styling */
.icon-box {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #ffffff;
    animation: pulse 2s infinite;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.5);
}

h1 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 15px;
    letter-spacing: -0.5px;
}

/* Reasons List Styling */
.reason-list {
    list-style: none;
    text-align: left;
    display: inline-block;
    margin-bottom: 10px;
}

.reason-list li {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
}

.reason-list i {
    margin-right: 12px;
    width: 20px;
    text-align: center;
}

.sub-text {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: bold;
}

/* Code/URL Box Styling */
.url-wrapper {
    margin-top: 10px;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 8px;
    padding: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.2s;
}

.url-wrapper:hover {
    transform: scale(1.02);
    border-color: rgba(255, 255, 255, 0.3);
}

.url-box {
    font-family: 'Courier New', monospace;
    font-size: 0.95rem;
    color: #4ade80;
    word-break: break-all;
    font-weight: bold;
}

footer {
    margin-top: 30px;
    z-index: 2;
}

footer a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s;
    background: rgba(0,0,0,0.3);
    padding: 8px 16px;
    border-radius: 50px;
    border: 1px solid rgba(255,255,255,0.1);
}

footer a:hover {
    color: #fff;
    background: rgba(0,0,0,0.6);
    border-color: rgba(255,255,255,0.3);
}

@keyframes floatIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.1); opacity: 0.8; }
    100% { transform: scale(1); opacity: 1; }
}

@media (max-width: 600px) {
    .container { padding: 25px; }
    h1 { font-size: 1.6rem; }
}