/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: linear-gradient(180deg, #3557FF 0%, #5B4EEA 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
}

/* Container Styles */
.container {
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1); 
    padding: 20px;
    text-align: center;
    max-width: 400px;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 0px;
    background: linear-gradient(90deg, #667eea, #764ba2);
}

/* Logo Styles */
.logo {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    font-weight: bold;
    background-image: url('../images/AppIcon Insight Master.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.logo_mirror {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    font-weight: bold;
    background-image: url('../images/AppIcon Mirror Master.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}


/* Typography */
h1 {
    color: #2d3748;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.2;
}

.subtitle {
    color: #718096;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
    font-weight: 400;
    white-space: pre-line;
}

/* App Button Styles */
.app-button {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    border: none;
    padding: 16px 32px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
    margin-bottom: 20px;
    width: 100%;
    max-width: 280px;
}

.app-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(102, 126, 234, 0.4);
}

.app-button:active {
    transform: translateY(0);
}

/* Store Buttons Container */
.store-buttons {
    display: flex;
    gap: 16px;
    justify-content: space-between;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    align-items: center;
    flex-wrap: wrap;
    flex-direction: row;
}

/* Store Button Base Styles */
.store-button-app-store-button,
.store-button-google-play-button {
    border: none;
    padding: 0;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: visible;
    flex: 1;
    min-width: 50px;
    max-width: 200px;
    height: 60px;
    width: 200px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    background: transparent;
}

/* App Store Button */
.store-button-app-store-button {
   
    
    background-image: url('../images/AppStore.png');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
    font-weight: 600;
    font-size: 14px;
    
}

/* Google Play Button */
.store-button-google-play-button {
    
    background-image: url('../images/GooglePlay.png');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
    font-weight: 600;
    font-size: 14px;
}

/* Store Button Hover Effects */
.store-button-app-store-button:hover,
.store-button-google-play-button:hover {
    transform: translateY(-2px);
    filter: brightness(1.1);
}

.store-button-app-store-button:active,
.store-button-google-play-button:active {
    transform: translateY(0);
}

/* Legacy Store Badge Image Styles (for compatibility) */
.store-badge-image {
    height: 60px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    transition: all 0.3s ease;
}

.store-button:hover .store-badge-image {
    transform: translateY(-2px);
    filter: brightness(1.1);
}

.store-button:active .store-badge-image {
    transform: translateY(0);
}

/* Features Section */
.features {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid #e2e8f0;
}

.feature {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    color: #4a5568;
    font-size: 14px;
}

.feature-icon {
    width: 20px;
    height: 20px;
    background: #667eea;
    border-radius: 50%;
    margin-right: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 10px;
    font-weight: bold;
}

.feature-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
}

.feature-title {
    color: #2d3748;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.4;
    display: block;
}

.feature-subtitle {
    color: #718096;
    font-size: 13px;
    line-height: 1.4;
    display: block;
}
