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

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    background: #000000;
    color: #f0f0f0;
    line-height: 1.4;
    min-height: 100vh;
    padding: 1rem;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.container {
    max-width: 1000px;
    width: 100%;
    margin: 0 auto;
    background: linear-gradient(145deg, rgba(20, 10, 40, 0.95), rgba(30, 20, 60, 0.9));
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.8), inset 0 1px 0 rgba(138, 43, 226, 0.3);
    border: 1px solid rgba(138, 43, 226, 0.5);
    backdrop-filter: blur(15px);
}

.title-section {
    text-align: center;
    margin-bottom: 1.5rem;
}

h1 {
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
    background: linear-gradient(45deg, #8a2be2, #da70d6, #9370db, #ff69b4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 40px rgba(138, 43, 226, 0.6);
    font-weight: 500;
    letter-spacing: 4px;
    filter: drop-shadow(0 0 15px rgba(138, 43, 226, 0.4));
}

.author {
    font-size: 1rem;
    color: #da70d6;
    font-style: italic;
    margin: 0;
    opacity: 0.9;
    letter-spacing: 1px;
    text-align: center;
}

.author a {
    color: #ff69b4;
    text-decoration: none;
    transition: all 0.3s ease;
    text-shadow: 0 0 8px rgba(255, 105, 180, 0.3);
}

.author a:hover {
    color: #da70d6;
    text-shadow: 0 0 15px rgba(255, 105, 180, 0.6);
    transform: translateY(-1px);
}

.scripture {
    font-size: 1rem;
    text-align: left;
    margin: 2rem 0;
    padding: 2rem 2rem 1.5rem 2rem;
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.1), rgba(30, 20, 60, 0.4));
    border-radius: 15px;
    border-left: 6px solid #8a2be2;
    border-right: 1px solid rgba(138, 43, 226, 0.3);
    font-style: italic;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15);
    max-width: 100%;
}

.verse {
    margin-bottom: 0.4rem;
    padding: 0.2rem 0;
    text-indent: -1.5rem;
    padding-left: 1.5rem;
}

.verse-number {
    color: #da70d6;
    font-weight: bold;
    margin-right: 0.8rem;
    font-size: 0.9rem;
}

.highlight {
    color: #ff69b4;
    font-weight: 600;
    text-shadow: 0 0 8px rgba(255, 105, 180, 0.3);
}

.reference {
    text-align: center;
    margin-top: 2rem;
    font-size: 0.9rem;
    color: #9370db;
    font-style: italic;
    font-weight: 500;
}

.decorative-line {
    height: 3px;
    background: linear-gradient(90deg, transparent, #8a2be2, #da70d6, #ff69b4, #da70d6, #8a2be2, transparent);
    margin: 1.5rem 0;
    border-radius: 2px;
    box-shadow: 0 0 10px rgba(138, 43, 226, 0.3);
}

@media (max-width: 768px) {
    body {
        padding: 0.5rem;
        align-items: flex-start;
        padding-top: 2rem;
    }
    
    .container {
        padding: 1.5rem;
        margin: 0;
    }
    
    .title-section h1 {
        font-size: 1.8rem;
        letter-spacing: 2px;
    }
    
    .author {
        font-size: 0.9rem;
    }
    
    .scripture {
        font-size: 0.9rem;
        padding: 1.5rem;
        margin: 1.5rem 0;
    }
    
    .verse {
        text-indent: -1.2rem;
        padding-left: 1.2rem;
    }
}

@media (max-width: 480px) {
    body {
        padding: 0.25rem;
        padding-top: 1rem;
    }
    
    .container {
        padding: 1rem;
    }
    
    .title-section h1 {
        font-size: 1.4rem;
        letter-spacing: 1px;
    }
    
    .author {
        font-size: 0.8rem;
    }
    
    .scripture {
        font-size: 0.8rem;
        padding: 1rem;
    }
    
    .verse {
        text-indent: -1rem;
        padding-left: 1rem;
        margin-bottom: 0.6rem;
    }
    
    .verse-number {
        font-size: 0.8rem;
        margin-right: 0.6rem;
    }
}

.rip-charlie {
    position: fixed;
    bottom: 20px;
    right: 20px;
    font-size: 22px;
    color: #e6e6fa;
    opacity: 0.7;
    text-decoration: none;
}

.rip-charlie a {
    color: #e6e6fa;
    text-decoration: none;
}
