@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;800&display=swap');

:root {
    --primary-gold: #FFD700;
    --primary-gold-dim: #CCAC00;
    --bg-color: #0f172a;
    --card-bg: rgba(30, 41, 59, 0.7);
    --text-primary: #f8fafc;
    --text-secondary: #94a3b8;
    --border-color: rgba(255, 215, 0, 0.2);
}

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

body {
    font-family: 'Outfit', sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-color);
    background-image: 
        radial-gradient(circle at 0% 0%, rgba(255, 215, 0, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 100% 100%, rgba(255, 215, 0, 0.05) 0%, transparent 50%);
    min-height: 100vh;
    padding: 60px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.container {
    background: var(--card-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 50px;
    border-radius: 24px;
    border: 1px solid var(--border-color);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    max-width: 800px;
    width: 100%;
}

h1 {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-gold), #FFFDE7);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 30px;
    text-align: center;
    letter-spacing: -1px;
}

h2 {
    color: var(--primary-gold);
    font-size: 1.5rem;
    margin-top: 40px;
    margin-bottom: 15px;
    font-weight: 600;
}

p, li {
    color: var(--text-secondary);
    margin-bottom: 15px;
    font-size: 1.05rem;
}

ul {
    margin-left: 20px;
    margin-bottom: 25px;
}

li {
    margin-bottom: 10px;
}

a {
    color: var(--primary-gold);
    text-decoration: none;
    transition: all 0.2s ease;
    font-weight: 600;
}

a:hover {
    color: #fff;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.footer {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    color: var(--text-secondary);
    text-align: center;
}

hr {
    border: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--border-color), transparent);
    margin: 30px 0;
}

.back-link {
    display: inline-block;
    margin-bottom: 30px;
    font-size: 0.9rem;
    opacity: 0.7;
}

.back-link:hover {
    opacity: 1;
}

.no-refund-box {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    background: rgba(220, 38, 38, 0.08);
    border: 1.5px solid rgba(220, 38, 38, 0.5);
    border-radius: 14px;
    padding: 18px 20px;
    margin: 24px 0;
    color: #fca5a5;
    font-size: 0.98rem;
    line-height: 1.6;
}

.no-refund-box strong {
    display: block;
    color: #f87171;
    font-size: 1.05rem;
    margin-bottom: 6px;
}

.no-refund-icon {
    font-size: 1.4rem;
    flex-shrink: 0;
    margin-top: 2px;
}

table th, table td {
    color: var(--text-secondary);
}

table th {
    color: var(--primary-gold);
}

@media (max-width: 600px) {
    .container {
        padding: 30px 20px;
    }
    h1 {
        font-size: 2rem;
    }
}
