:root {
    --primary-turquoise: #00BCD4;
    --orange: #FF5722;
    --green: #4CAF50;
    --text-white: #ffffff;
    --shadow: rgba(0, 0, 0, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--primary-turquoise);
    color: var(--text-white);
    height: 100vh;
    margin: 0;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

/* Background decorative circles */
.bg-decoration {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    z-index: 1;
}

.circle-1 {
    width: 400px;
    height: 400px;
    top: -200px;
    left: -200px;
}

.circle-2 {
    width: 250px;
    height: 250px;
    bottom: -125px;
    left: 5%;
}

.circle-3 {
    width: 180px;
    height: 180px;
    top: 15%;
    right: -90px;
}

.circle-4 {
    width: 120px;
    height: 120px;
    top: 60%;
    right: 15%;
}

.header {
    padding: 20px 40px;
    display: flex;
    justify-content: center;
    z-index: 10;
    position: relative;
}

.main-content {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 10;
    padding: 0 40px;
    height: calc(90vh - 10px);
}

.content-container {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 1200px;
    width: 100%;
    position: relative;
}

.download-section {
    flex: 0 0 auto;
    text-align: center;
    max-width: 600px;
    z-index: 15;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.app-icon {
    width: 120px;
    height: 120px;
    border-radius: 25px;
    margin-bottom: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
    background: linear-gradient(135deg, #ffffff 0%, #f5f5f5 50%, #e0e0e0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 60px;
    color: white;
}
.app-icon img{
    width: 100px;
    height: auto;
}

.app-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 10px;
}

.app-subtitle {
    font-size: 18px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
}

.download-info {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 30px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    max-width: 400px;
}

.info-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    font-size: 16px;
}

.info-item:last-child {
    margin-bottom: 0;
}

.info-label {
    color: rgba(255, 255, 255, 0.8);
}

.info-value {
    font-weight: 600;
    color: var(--text-white);
}

.download-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
    width: 100%;
}

.btn {
    padding: 16px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s ease;
    min-width: 250px;
    text-align: center;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-download {
    background: var(--green);
    color: white;
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
}

.btn-download:hover {
    background: #45a049;
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(76, 175, 80, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--text-white);
    border: 2px solid var(--text-white);
}

.btn-secondary:hover {
    background: var(--text-white);
    color: var(--primary-turquoise);
    transform: translateY(-2px);
}

.download-note {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 20px;
    text-align: center;
    max-width: 350px;
}

.phone-illustration {
    position: absolute;
    bottom: 0;
    right: 0;
    max-width: 300px;
    width: 25%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 5;
    transform: translateX(-50%);
    font-size: 200px;
    color: rgba(255, 255, 255, 0.1);
}

/* Notification Styles */
.notification-container {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 0;
    z-index: 9999;
    pointer-events: none;
}

.notification-container .custom-notification {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.95);
    color: var(--primary-turquoise);
    padding: 16px 24px;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 12px;
    transform: translateX(120%) scale(0.8);
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    max-width: 90%;
    width: auto;
    opacity: 0;
    visibility: hidden;
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    pointer-events: auto;
}

.notification-container .custom-notification.show {
    transform: translateX(0) scale(1);
    opacity: 1;
    visibility: visible;
}

.notification-container .custom-notification i {
    font-size: 24px;
    flex-shrink: 0;
    color: var(--green);
    animation: notificationIconPop 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55) 0.2s both;
}

.notification-container .custom-notification .message {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.4;
    word-wrap: break-word;
    animation: notificationSlideIn 0.5s ease-out 0.1s both;
}

@keyframes notificationIconPop {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes notificationSlideIn {
    0% {
        transform: translateX(-20px);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Tablet and smaller desktop screens */
@media screen and (max-width: 1024px) {
    .notification-container .custom-notification {
        top: 15px;
        right: 15px;
        padding: 14px 20px;
    }

    .notification-container .custom-notification .message {
        font-size: 15px;
    }

    .notification-container .custom-notification i {
        font-size: 22px;
    }
}

/* Mobile devices */
@media screen and (max-width: 768px) {
    .notification-container .custom-notification {
        top: 10px;
        right: 10px;
        left: 10px;
        padding: 12px 18px;
        max-width: calc(100% - 20px);
        transform: translateY(-120%) scale(0.8);
    }

    .notification-container .custom-notification.show {
        transform: translateY(0) scale(1);
    }

    .notification-container .custom-notification .message {
        font-size: 14px;
    }

    .notification-container .custom-notification i {
        font-size: 20px;
    }
}

/* Small mobile devices */
@media screen and (max-width: 480px) {
    .notification-container .custom-notification {
        padding: 10px 16px;
    }

    .notification-container .custom-notification .message {
        font-size: 13px;
    }

    .notification-container .custom-notification i {
        font-size: 18px;
    }
}

@media (max-width: 968px) {
    .content-container {
        flex-direction: column;
        gap: 30px;
        text-align: center;
        padding-bottom: 60px;
    }

    .phone-illustration {
        position: fixed;
        right: 20px;
        bottom: 20px;
        max-width: 150px;
        width: 20%;
        font-size: 120px;
    }

    .download-section {
        order: 1;
        max-width: 100%;
    }

    .app-title {
        font-size: 28px;
    }

    .app-subtitle {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .header {
        padding: 20px 25px;
    }

    .main-content {
        padding: 0 25px;
    }

    .content-container {
        gap: 25px;
    }

    .app-title {
        font-size: 26px;
    }

    .app-subtitle {
        font-size: 15px;
    }

    .download-info {
        padding: 25px;
        max-width: 350px;
    }

    .btn {
        padding: 14px 35px;
        font-size: 16px;
        min-width: 220px;
    }

    .phone-illustration {
        display: none;
    }
}

@media (max-width: 480px) {
    .header {
        padding: 15px 20px;
    }

    .main-content {
        padding: 0 20px;
    }

    .content-container {
        gap: 20px;
        padding-bottom: 40px;
    }

    .app-icon {
        width: 100px;
        height: 100px;
        font-size: 50px;
    }

    .app-title {
        font-size: 24px;
    }

    .app-subtitle {
        font-size: 14px;
    }

    .download-info {
        padding: 20px;
        max-width: 300px;
    }

    .btn {
        padding: 12px 30px;
        font-size: 15px;
        min-width: 200px;
    }

    .download-buttons {
        gap: 10px;
    }
}

.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(76, 175, 80, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(76, 175, 80, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(76, 175, 80, 0);
    }
}