:root {
    --brand-orange: #f26b21;
    --brand-red: #e63946;
    --brand-dark: #0a0b10;
    --brand-card: rgba(20, 21, 31, 0.6);
    --border-color: rgba(242, 107, 33, 0.2);
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.7);
    --glow-orange: rgba(242, 107, 33, 0.6);
    --glow-red: rgba(230, 57, 70, 0.6);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    background-color: var(--brand-dark);
    color: var(--text-primary);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    position: relative;
    padding: 20px;
}

/* Background Animations */
.background-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.blob {
    position: absolute;
    filter: blur(100px);
    border-radius: 50%;
    animation: float 15s infinite alternate ease-in-out;
}

.orange-blob {
    width: 400px;
    height: 400px;
    background: var(--glow-orange);
    top: -100px;
    left: -100px;
}

.red-blob {
    width: 300px;
    height: 300px;
    background: var(--glow-red);
    bottom: -50px;
    right: -50px;
    animation-delay: -5s;
    animation-duration: 20s;
}

@keyframes float {
    0% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(30px, -50px) scale(1.1);
    }

    100% {
        transform: translate(-50px, 30px) scale(0.9);
    }
}

/* Layout Container */
.container {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 540px;
}

/* Glassmorphism Card */
.glass-card {
    background: var(--brand-card);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5),
        0 0 20px rgba(242, 107, 33, 0.1) inset;
    animation: fadeUpIn 1s ease-out forwards;
    transform: translateY(30px);
    opacity: 0;
    position: relative;
    overflow: hidden;
}

/* Subtle border animation */
.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--brand-orange), transparent);
    animation: slideGradient 3s linear infinite;
}

@keyframes slideGradient {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(100%);
    }
}

@keyframes fadeUpIn {
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Header/Logo */
.logo-container {
    text-align: center;
    margin-bottom: 30px;
}

.brand-logo {
    max-height: 50px;
    object-fit: contain;
    position: relative;
    z-index: 20;
}

/* Content */
.content-wrapper {
    text-align: center;
}

.icon-warning {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    color: var(--brand-orange);
    animation: wiggle 2s infinite cubic-bezier(.36, .07, .19, .97) both;
}

.icon-warning svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 0 8px rgba(242, 107, 33, 0.5));
}

@keyframes wiggle {

    0%,
    100% {
        transform: rotate(0deg);
    }

    15% {
        transform: rotate(-10deg);
    }

    30% {
        transform: rotate(8deg);
    }

    45% {
        transform: rotate(-5deg);
    }

    60% {
        transform: rotate(2deg);
    }
}

.title {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 12px;
    background: linear-gradient(135deg, var(--text-primary), #ffd2b3);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.5px;
}

.description {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 15px;
}

.sub-description {
    font-size: 14px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 30px;
    padding: 0 10px;
}

/* Button with hover & animation */
.actions {
    display: flex;
    justify-content: center;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, var(--brand-orange), #ff884d);
    color: #fff;
    text-decoration: none;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(242, 107, 33, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-primary .arrow-icon {
    width: 18px;
    height: 18px;
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.btn-primary::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(242, 107, 33, 0.5);
}

.btn-primary:hover::after {
    left: 100%;
}

.btn-primary:hover .arrow-icon {
    transform: translateX(4px);
}

@media (max-width: 480px) {
    .glass-card {
        padding: 30px 20px;
    }

    .title {
        font-size: 24px;
    }
}