/* Global Styles & Variables */
:root {
    --primary-color: #6a11cb;
    --secondary-color: #2575fc;
    --accent-color: #ff0080;
    --text-color: #ffffff;
    --text-secondary: #e0e0e0;
    --bg-color: #0f0c29;
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
    --font-main: 'Outfit', sans-serif;
}

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

body {
    font-family: var(--font-main);
    background: linear-gradient(135deg, var(--bg-color), #302b63, #24243e);
    color: var(--text-color);
    min-height: 100vh;
    overflow-x: hidden;
    line-height: 1.6;
}

/* Typography */
h1,
h2,
h3 {
    font-weight: 700;
    line-height: 1.2;
}

h1 {
    font-size: 3.5rem;
    background: linear-gradient(to right, #fff, #b3cdd1);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    text-align: center;
}

p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s ease;
}

/* Layout Containers */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 20px;
    backdrop-filter: blur(10px);
    position: relative;
    z-index: 10;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-container img {
    width: 80px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.logo-text {
    font-size: 3.5rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    background: linear-gradient(to right, #fff, #b3cdd1);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

/* Hero Section */
.hero {
    display: flex;
    flex-direction: column;

    align-items: center;
    justify-content: space-between;
    padding: 60px 20px;
    min-height: 80vh;
    gap: 50px;
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

.hero-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    position: relative;
}

.hero-visual img {
    max-width: 100%;
    width: 320px;
    border-radius: 30px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    transform: rotate(-3deg);
    transition: transform 0.5s ease;
}

.hero-visual img:hover {
    transform: rotate(0deg) scale(1.02);
}

/* Store Buttons */
.store-buttons {
    display: flex;
    gap: 20px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.store-btn img {
    height: 55px;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.store-btn:hover img {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

/* Gallery Section */
.gallery {
    padding: 80px 20px;
    background: rgba(0, 0, 0, 0.2);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    justify-items: center;
}

.screenshot {
    width: 100%;
    max-width: 240px;
    border-radius: 20px;
    border: 4px solid var(--glass-border);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    transition: all 0.4s ease;
}

.screenshot:hover {
    transform: scale(1.05) translateY(-10px);
    border-color: var(--secondary-color);
    z-index: 2;
}

/* Footer */
footer {
    text-align: center;
    padding: 40px 20px;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(5px);
    margin-top: auto;
    font-size: 0.9rem;
    color: #aaa;
}

footer a {
    color: var(--secondary-color);
    font-weight: 600;
}

footer a:hover {
    color: var(--accent-color);
    text-decoration: underline;
}

/* Responsiveness */
@media (min-width: 992px) {
    .hero {
        flex-direction: row;
    }

    h1 {
        font-size: 4.5rem;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }

    .hero {
        text-align: center;
    }

    .store-buttons {
        justify-content: center;
    }
}