* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    /* Premium True Dark Theme: Dark Red -> Dark Orange -> Black */
    background: linear-gradient(160deg, #420000 0%, #6b1d00 40%, #0a0000 85%, #000000 100%);
    color: #ffffff;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    position: relative;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://www.transparenttextures.com/patterns/cubes.png');
    opacity: 0.05;
    z-index: 0;
    pointer-events: none;
}

.container {
    max-width: 480px;
    width: 100%;
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 1;
}

.hero-section {
    width: 100%;
    margin-bottom: 20px;
}

.logo {
    max-width: 220px;
    height: auto;
    clip-path: inset(0 0 15% 0);
    margin-bottom: -5px;
}

.brand-subtitle {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 35px;
    color: rgba(255, 255, 255, 0.95);
    padding: 0 10px;
}

.action-buttons {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
    margin-bottom: 40px;
}

.btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 16px;
    border-radius: 30px;
    font-size: 17px;
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.2s ease;
    border: none;
    cursor: pointer;
}

.btn:active {
    transform: scale(0.96);
}

.btn-primary {
    background: linear-gradient(90deg, #FFD700 0%, #FF8C00 50%, #FFD700 100%);
    background-size: 200% auto;
    color: #4a0000;
    border: 2px solid #ffd700;
    animation: gradientShine 3s infinite linear;
}

.btn-secondary {
    background: linear-gradient(90deg, #00c65c 0%, #00a44c 100%);
    color: #ffffff;
    border: 1px solid #1cda75;
    animation: gentleBreathe 2s infinite ease-in-out;
}

@keyframes gradientShine {
    0% { background-position: 0% center; }
    100% { background-position: -200% center; }
}

@keyframes gentleBreathe {
    0% { transform: scale(1); }
    50% { transform: scale(1.03); }
    100% { transform: scale(1); }
}

.btn i {
    font-size: 20px;
}

.services-section {
    width: 100%;
    margin-bottom: 30px;
}

.section-title {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 12px;
}

.section-subtitle {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 25px;
}

.services-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
}

.service-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 20px;
    border-radius: 16px;
    font-size: 17px;
    font-weight: 600;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.service-card:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

footer {
    width: 100%;
    text-align: center;
    padding: 15px 0;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    margin-top: auto;
}
