* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    background: var(--bg-gradient);
    color: var(--text-primary);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    overflow-x: hidden;
}

/* Subtle glass overlay */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(229, 57, 53, 0.08), transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 82, 82, 0.06), transparent 50%);
    pointer-events: none;
    z-index: 0;
}

/* iOS-style smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Custom scrollbar - iOS inspired */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 0, 0, 0.3);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--space-lg);
    flex: 1;
    position: relative;
    z-index: var(--z-base);
    width: 100%;
}

/* Navigation removed - using full-screen layouts */

footer {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    padding: var(--space-2xl) 0;
    text-align: center;
    border-top: 0.5px solid rgba(0, 0, 0, 0.08);
    font-size: var(--font-size-xs);
    color: var(--text-secondary);
    margin-top: auto;
    box-shadow: var(--shadow-sm);
}

/* iOS Typography */
.welcome-heading {
    margin-bottom: var(--space-2xl);
    font-size: var(--font-size-3xl);
    font-weight: var(--font-weight-bold);
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -1px;
    line-height: 1.2;
}

.welcome-text {
    font-size: var(--font-size-lg);
    line-height: 1.7;
    margin-bottom: var(--space-2xl);
    color: var(--text-secondary);
    font-weight: var(--font-weight-normal);
}

.player-page-heading {
    margin-bottom: var(--space-2xl);
    font-size: var(--font-size-2xl);
    font-weight: var(--font-weight-bold);
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px;
}

.player-description {
    margin-bottom: var(--space-3xl);
    color: var(--text-secondary);
    line-height: 1.6;
}

.player-section-heading {
    margin-bottom: var(--space-xl);
    font-weight: var(--font-weight-semibold);
    color: var(--text-primary);
    font-size: var(--font-size-xl);
    letter-spacing: -0.3px;
}
