/* Font 1: Para sa Brand Name */
@font-face {
    font-family: 'VerminVibes';
    src: url('../fonts/VerminVibesV-Zlg3.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

/* Font 2: Para sa Tagline */
@font-face {
    font-family: 'Gilroy-ExtraBold';
    src: url('../fonts/Gilroy-ExtraBold.ttf') format('truetype');
    font-weight: 800;
    font-style: normal;
}

/* Keyframes para sa Shimmer Effect */
@keyframes shimmer {
    0% {
        background-position: -200% center;
    }
    100% {
        background-position: 200% center;
    }
}


body {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    background-color: #2c2c2c;
    overflow: hidden;
}

.center-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* Logo Styling */
#floating-icon {
    /* Ang container na ito ang nag-f-float */
}

#floating-icon img {
    width: 150px;
    height: auto;
}

/* Brand Name Styling (Na may Shimmer Effect) */
.brand-name {
    margin-top: 25px;
    text-align: center;
}

.brand-name p {
    font-family: 'VerminVibes', sans-serif;
    font-size: 2.5em;
    letter-spacing: 3px;
    margin: 0;
    margin-bottom: 10px;
    background: linear-gradient(
        to right, 
        #4a90e2 20%,
        #ffffff 50%,
        #4a90e2 80%
    );
    background-size: 200% auto;
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shimmer 3s linear infinite;
}

/* Tagline/Caption Styling */
.tagline {
    text-align: center;
}

.tagline p {
    font-family: 'Gilroy-ExtraBold', sans-serif;
    font-size: 1.2em;
    color: #cccccc;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin: 0;
}


/* --- BINAGO: STYLE PARA SA INSTALL BUTTON (GRADIENT) --- */

/* ... (Skip sa .tagline p) ... */

/* --- INAYOS: STYLE PARA SA INSTALL BUTTON (GRADIENT) --- */

.install-button {
    margin-top: 25px; 
    padding: 12px 24px;
    
    /* BINAGO: Mula solid color_ to gradient */
    background: linear-gradient(145deg, #4a90e2, #357abd);
    
    color: white;
    /* BINAGO: Gamitin ang Gilroy font */
    font-family: 'Gilroy-ExtraBold', sans-serif; 
    font-weight: 800;
    font-size: 16px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease; /* Pinalitan para mas smooth */
}

/* ... (The rest of style.css is the same) ... */

.install-button:hover {
    /* BINAGO: Gradient hover effect */
    background: linear-gradient(145deg, #357abd, #4a90e2);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4);
}

.install-button:active {
    transform: translateY(1px);
}

/* --- BAGONG DAGDAG: STYLE PARA SA SWEETALERT --- */
/* Ginagamit ito sa 'customClass' sa script.js */
.swal-gradient.swal2-popup {
    background: linear-gradient(180deg, #3a3a3a, #2c2c2c) !important;
    border: 1px solid #4a90e2;
}


/* --- INAYOS: PARA GAMITIN ANG GILROY FONT SA SWEETALERT --- */
.swal2-popup {
    font-family: 'Gilroy-ExtraBold', sans-serif !important;
}

.swal2-title {
    font-family: 'Gilroy-ExtraBold', sans-serif !important;
    color: #ffffff !important; /* Siguraduhin na puti ang title */
    text-transform: uppercase; /* Para kapareho ng tagline */
    letter-spacing: 1px;
}

.swal2-html-container {
    font-family: 'Gilroy-ExtraBold', sans-serif !important;
    color: #cccccc !important; /* Medyo light gray para sa description */
    font-size: 1.1em !important;
    font-weight: 800 !important;
}

.swal2-confirm,
.swal2-cancel {
    font-family: 'Gilroy-ExtraBold', sans-serif !important;
    font-weight: 800 !important; /* Gamitin ang 800 weight na defined sa @font-face */
    border-radius: 6px !important; /* Konting ayos sa button */
}

.swal2-confirm {
     background-color: #4a90e2 !important;
}

.swal2-cancel {
    background-color: #6c757d !important;
}