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

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #f5f5f5;
}

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

header {
    background: linear-gradient(135deg, #fc4c02 0%, #e34402 100%);
    color: white;
    padding: 60px 0 0 0;
    text-align: center;
}

header h1 {
    font-size: 48px;
    margin-bottom: 15px;
}

.sport-icons {
    font-size: 32px;
    margin-bottom: 15px;
    letter-spacing: 8px;
}

.tagline {
    font-size: 20px;
    opacity: 0.95;
    margin-bottom: 30px;
}

.header-nav {
    display: flex;
    gap: 25px;
    justify-content: center;
    flex-wrap: wrap;
}

.header-nav a {
    color: white;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 4px;
    transition: background 0.2s;
}

.header-nav a:hover {
    background: rgba(255, 255, 255, 0.15);
}

main {
    padding: 60px 20px;
}

section {
    background: white;
    border-radius: 8px;
    padding: 40px;
    margin-bottom: 40px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

h2 {
    font-size: 32px;
    margin-bottom: 30px;
    color: #fc4c02;
}

h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #333;
}

.hero {
    text-align: center;
}

.value-props {
    margin-bottom: 30px;
}

.value-props p {
    font-size: 20px;
    color: #555;
    margin-bottom: 6px;
    line-height: 1.6;
}

.install-button {
    display: inline-block;
    padding: 18px 48px;
    background: #fc4c02;
    color: white;
    font-size: 22px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 8px;
    transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 14px rgba(252, 76, 2, 0.35);
}

.install-button:hover {
    background: #e34402;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(252, 76, 2, 0.45);
}

.store-links {
    display: flex;
    gap: 24px;
    justify-content: center;
    margin-top: 24px;
}

.store-link {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: #555;
    font-size: 15px;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 6px;
    border: 1px solid #ddd;
    transition: border-color 0.2s, color 0.2s;
}

.store-link:hover {
    border-color: #999;
    color: #333;
}

.store-link img {
    display: block;
}

.browser-badges {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.badge {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    transition: transform 0.2s, box-shadow 0.2s;
}

.badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.badge.firefox {
    background: #ff9500;
    color: white;
}

.badge.chrome {
    background: #4285f4;
    color: white;
}

.badge .icon {
    font-size: 32px;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature {
    text-align: center;
    padding: 20px;
}

.feature-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.feature h3 {
    margin-bottom: 10px;
}

.feature p {
    color: #666;
    line-height: 1.8;
}

.install-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
}

.step h3 {
    margin-bottom: 20px;
    color: #fc4c02;
}

.step ol {
    padding-left: 20px;
}

.step li {
    margin-bottom: 12px;
    line-height: 1.8;
}

code {
    background: #f5f5f5;
    padding: 2px 6px;
    border-radius: 3px;
    font-family: 'Monaco', 'Menlo', monospace;
    font-size: 14px;
}

.usage-steps {
    padding-left: 20px;
}

.usage-steps li {
    margin-bottom: 20px;
    line-height: 1.8;
}

.plus-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #FC4C02;
    font-weight: bold;
    border: 2px solid #FC4C02;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    font-size: 16px;
    vertical-align: middle;
}

#latest-release {
    padding: 20px;
    background: #f9f9f9;
    border-radius: 4px;
    border-left: 4px solid #fc4c02;
}

footer {
    background: #333;
    color: white;
    padding: 40px 0;
    text-align: center;
}

footer a {
    color: #fc4c02;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    header h1 {
        font-size: 36px;
    }
    
    .tagline {
        font-size: 16px;
    }
    
    h2 {
        font-size: 24px;
    }
    
    .install-steps,
    .feature-grid {
        grid-template-columns: 1fr;
    }
}
