:root {
    --primary-color: #ff8c00;
    --secondary-color: #b22222;
    --background-color: #fffaf0;
    --text-color: #333333;
    --border-color: #fadcb3;
    --gradient-primary: linear-gradient(135deg, #ff8c00, #ff4500);
    --border-radius-md: 8px;
    --border-radius-lg: 16px;
    --box-shadow: 0 10px 20px rgba(178, 34, 34, 0.1);
}

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

body {
    font-family: 'Manjari', -apple-system, sans-serif;
    line-height: 1.6;
    background-color: var(--background-color);
    background-image: url('data:image/svg+xml;utf8,<svg width="40" height="40" viewBox="0 0 40 40" xmlns="http://www.w3.org/2000/svg"><path d="M20 5 L23 17 L35 20 L23 23 L20 35 L17 23 L5 20 L17 17 Z" fill="#ffecd2" opacity="0.4"/></svg>');
    color: var(--text-color);
    animation: fadeIn 0.8s ease-in;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 1rem;
}

h1, h2, h3, h4, h5, h6 {
    line-height: 1.2;
}

.text-center { text-align: center; }
.text-primary { color: var(--primary-color); }
.text-secondary { color: var(--secondary-color); font-weight: bold; }

.btn {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 4px 15px rgba(255, 69, 0, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 69, 0, 0.4);
}

.btn-outline {
    background-color: transparent;
    color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
}

.btn-outline:hover {
    background-color: var(--secondary-color);
    color: white;
}

.form-group {
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
}

.form-label {
    margin-bottom: 0.5rem;
    font-weight: bold;
    color: var(--secondary-color);
}

.form-input {
    padding: 0.8rem 1rem;
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius-md);
    font-size: 1rem;
    font-family: inherit;
    background-color: white;
    transition: border-color 0.3s;
}

.form-input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(255, 140, 0, 0.2);
}

/* Custom Checkbox/Radio cards */
.plan-selector {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.plan-card {
    display: flex;
    align-items: center;
    padding: 1rem;
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius-md);
    cursor: pointer;
    transition: all 0.3s;
    background: white;
}

.plan-card:hover {
    border-color: var(--primary-color);
    background: #fff5e6;
}

.plan-card input[type="radio"] {
    margin-right: 1rem;
    transform: scale(1.2);
    accent-color: var(--primary-color);
}

.plan-time {
    font-size: 1.1rem;
    font-weight: bold;
    color: var(--secondary-color);
}

.plan-price {
    margin-left: auto;
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--primary-color);
}

/* Notification Header */
.devotional-header {
    background: var(--gradient-primary);
    color: white;
    padding: 3rem 1rem;
    border-radius: 0 0 var(--border-radius-lg) var(--border-radius-lg);
    text-align: center;
    margin-bottom: 2rem;
    box-shadow: var(--box-shadow);
    position: relative;
    overflow: hidden;
}

.devotional-header::after {
    content: 'ॐ';
    position: absolute;
    top: -20px;
    right: -10px;
    font-size: 8rem;
    opacity: 0.1;
    color: white;
}
