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

:root {
    --primary-color: #ff4b2b;
    --secondary-color: #ff416c;
    --text-color: #333;
    --background-color: #f9f9f9;
    --button-hover: #e03a1a;
    --shadow-color: rgba(0, 0, 0, 0.1);
}

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

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--background-color);
    color: var(--text-color);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.container {
    width: 100%;
    max-width: 1000px;
    padding: 2rem;
    text-align: center;
}

header {
    margin-bottom: 3rem;
    opacity: 0;
    transform: translateY(-20px);
    transition: all 0.8s ease;
}

h1 {
    font-size: 3.5rem;
    font-weight: 700;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 1rem;
    text-shadow: 0 5px 15px var(--shadow-color);
}

.buttons {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 500px;
    margin: 0 auto;
}

.btn {
    display: flex;
    align-items: center;
    padding: 1.2rem 2rem;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px var(--shadow-color);
    opacity: 0;
    transform: translateY(20px);
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px var(--shadow-color);
    background: linear-gradient(to right, var(--button-hover), var(--secondary-color));
}

.btn-icon {
    font-size: 1.8rem;
    margin-right: 1rem;
    transition: transform 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
}

.btn-text {
    flex: 1;
    text-align: center;
}

.custom-icon {
    width: 48px;
    height: auto;
    transition: transform 0.3s ease;
}

.btn:hover .custom-icon {
    transform: scale(1.2) rotate(5deg);
}

footer {
    margin-top: 4rem;
    color: #666;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }
    
    .btn {
        font-size: 1rem;
        padding: 1rem 1.5rem;
    }
    
    .custom-icon {
        width: 40px;
    }
    
    .btn-icon {
        width: 2.5rem;
        height: 2.5rem;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2rem;
    }
    
    .container {
        padding: 1rem;
    }
    
    .btn-icon {
        font-size: 1.5rem;
        width: 2.2rem;
        height: 2.2rem;
    }
    
    .custom-icon {
        width: 36px;
    }
}
