* { 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(135deg, #fff7ed 0%, #ffedd5 50%, #ffedd5 100%);
    color: #431a00;
    line-height: 1.8;
}
header {
    background: linear-gradient(135deg, #f97316 0%, #fb923c 50%, #fdba74 100%);
    padding: 18px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 25px rgba(249,115,22,0.3);
}
.header-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.logo {
    font-size: 1.9rem;
    font-weight: 800;
    color: #fff;
    text-decoration: none;
    text-shadow: 0 2px 8px rgba(0,0,0,0.15);
}
.home-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    color: #ea580c;
    text-decoration: none;
    padding: 12px 28px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(234,88,12,0.15);
}
.home-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(234,88,12,0.25);
    background: #fef3c7;
}
.home-btn svg { width: 18px; height: 18px; }
main {
    max-width: 960px;
    margin: 0 auto;
    padding: 64px 32px 80px;
}
h1 {
    font-size: 2.8rem;
    margin-bottom: 28px;
    color: #9a2e00;
    font-weight: 800;
    line-height: 1.25;
    letter-spacing: -0.02em;
}
h2 {
    font-size: 1.9rem;
    margin: 48px 0 24px;
    color: #c2410c;
    font-weight: 700;
    padding-bottom: 10px;
    border-bottom: 2px solid #fdba74;
}
h3 {
    font-size: 1.45rem;
    margin: 32px 0 18px;
    color: #b91c08;
    font-weight: 600;
}
p {
    margin-bottom: 20px;
    font-size: 1.08rem;
    color: #5a3000;
}
.intro {
    font-size: 1.25rem;
    color: #7c2d00;
    margin-bottom: 36px;
    padding: 24px 28px;
    background: linear-gradient(135deg, #fed7aa, #fde68a);
    border-left: 5px solid #f97316;
    border-radius: 0 12px 12px 0;
    font-weight: 500;
    box-shadow: 0 4px 15px rgba(249,115,22,0.1);
}
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin: 36px 0;
}
.feature-card {
    background: #fff;
    border: 1px solid #fed7aa;
    border-radius: 16px;
    padding: 28px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(180,80,0,0.06);
}
.feature-card:hover {
    transform: translateY(-4px);
    border-color: #fb923c;
    box-shadow: 0 12px 35px rgba(249,115,22,0.15);
}
.feature-icon {
    font-size: 2.8rem;
    margin-bottom: 16px;
}
.feature-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #9a2e00;
    margin-bottom: 10px;
}
.feature-desc {
    font-size: 1rem;
    color: #5a3000;
}
.cta-section {
    background: linear-gradient(135deg, #f97316, #ea580c);
    border-radius: 20px;
    padding: 48px 36px;
    text-align: center;
    margin: 48px 0;
    box-shadow: 0 8px 30px rgba(249,115,22,0.25);
}
.cta-title {
    font-size: 1.9rem;
    color: #fff;
    margin-bottom: 16px;
    font-weight: 700;
}
.cta-text {
    font-size: 1.15rem;
    color: #fff3e0;
    margin-bottom: 28px;
}
.cta-btn {
    display: inline-block;
    background: #fff;
    color: #c2410c;
    text-decoration: none;
    padding: 16px 44px;
    border-radius: 30px;
    font-size: 1.15rem;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}
.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 35px rgba(0,0,0,0.25);
    background: #fef3c7;
}
ul, ol {
    margin: 18px 0 24px 28px;
}
li {
    margin-bottom: 12px;
    color: #5a3000;
    font-size: 1.08rem;
}
.steps {
    margin: 36px 0;
}
.step {
    display: flex;
    gap: 24px;
    margin-bottom: 28px;
    padding: 24px;
    background: #fff;
    border-radius: 14px;
    border: 1px solid #fed7aa;
    box-shadow: 0 2px 8px rgba(180,80,0,0.04);
}
.step-number {
    min-width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #f97316, #ea580c);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
    color: #fff;
}
.step-content h3 {
    margin-top: 0;
    color: #9a2e00;
}
.step-content p {
    margin-bottom: 0;
}
.comparison-table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(180,80,0,0.06);
}
.comparison-table th,
.comparison-table td {
    padding: 16px 18px;
    text-align: left;
    border-bottom: 1px solid #fed7aa;
}
.comparison-table th {
    background: linear-gradient(135deg, #fed7aa, #fde68a);
    color: #9a2e00;
    font-weight: 700;
}
.comparison-table td {
    color: #5a3000;
}
.comparison-table tr:hover {
    background: #fff7ed;
}
.check {
    color: #16a34a;
    font-weight: 700;
}
.cross {
    color: #dc2626;
    font-weight: 700;
}
.player-section {
    background: #fff;
    border-radius: 16px;
    padding: 28px;
    margin: 28px 0;
    border: 1px solid #fed7aa;
    box-shadow: 0 2px 10px rgba(180,80,0,0.06);
}
.player-section h3 {
    margin-top: 0;
    color: #9a2e00;
}
.player-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #fef3c7, #fed7aa);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #9a2e00;
    margin-bottom: 12px;
}
.ixplay-box {
    background: linear-gradient(135deg, #fff7ed, #fed7aa);
    border: 2px solid #fb923c;
    border-radius: 16px;
    padding: 28px;
    margin: 28px 0;
}
.ixplay-box h3 {
    color: #9a2e00;
    margin-top: 0;
}
.ixplay-box a {
    color: #ea580c;
    font-weight: 700;
}
footer {
    background: linear-gradient(135deg, #fef3c7, #fed7aa);
    border-top: 1px solid #fdba74;
    padding: 36px 20px;
    text-align: center;
    color: #7c2d00;
}
@media (max-width: 768px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.5rem; }
    .header-content { flex-direction: column; gap: 14px; }
    .cta-section { padding: 32px 20px; }
    .step { flex-direction: column; gap: 12px; }
    main { padding: 40px 18px 60px; }
}
