/* Apple-inspired color palette */
:root {
    --primary-blue: #007AFF;
    --secondary-gray: #8E8E93;
    --background-light: #F2F2F7;
    --text-dark: #1C1C1E;
    --white: #FFFFFF;
}

/* 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;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--background-light);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header styles */
header {
    background-color: var(--white);
    padding: 2rem 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

h1 {
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.tagline {
    font-size: 1.2rem;
    color: var(--secondary-gray);
}

/* Game section styles */
.game-section {
    padding: 2rem 0;
}

.game-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    margin: 2rem 0;
}

iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Info section styles */
.info-section {
    background-color: var(--white);
    padding: 3rem 0;
}

h2 {
    color: var(--text-dark);
    font-size: 1.8rem;
    margin: 2rem 0 1rem;
}

.info-content {
    max-width: 800px;
    margin: 0 auto;
}

p {
    margin-bottom: 1.5rem;
}

ul {
    list-style-position: inside;
    margin-bottom: 1.5rem;
}

li {
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

/* Footer styles */
footer {
    background-color: var(--text-dark);
    color: var(--white);
    padding: 1.5rem 0;
    text-align: center;
}

/* Responsive design */
@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }

    .tagline {
        font-size: 1rem;
    }

    .game-container {
        padding-bottom: 75%; /* Adjusted aspect ratio for mobile */
    }

    .info-section {
        padding: 2rem 0;
    }

    h2 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    h1 {
        font-size: 1.8rem;
    }

    .game-container {
        padding-bottom: 100%; /* Square aspect ratio for small screens */
    }
} 