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

body {
    font-family: 'Noto Sans Devanagari', sans-serif;
    line-height: 1.8;
    background: linear-gradient(135deg, #d4c4a8 0%, #c7b299 50%, #b8a082 100%);
    min-height: 100vh;
    padding: 2rem 0;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
}

.header {
    text-align: center;
    margin-bottom: 3rem;
    background: linear-gradient(135deg, #f9f5ec 0%, #f4ede4 100%);
    padding: 3rem 2rem;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(10px);
    border: 2px solid #cba16c;
    position: relative;
}

.header::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #aa7744, #cba16c, #af8759);
    border-radius: 22px;
    z-index: -1;
}

.title {
    font-size: 3rem;
    font-weight: 700;
    color: #5b3e1a;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(91, 62, 26, 0.1);
    background: linear-gradient(45deg, #8B4513, #654321);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.subtitle {
    font-family: 'Crimson Text', serif;
    font-size: 1.3rem;
    color: #6c4a27;
    font-style: italic;
    margin-bottom: 1rem;
    font-weight: 600;
}

.description {
    font-size: 1.1rem;
    color: #40290e;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.content-wrapper {
    background: linear-gradient(135deg, #f9f5ec 0%, #f0e6d3 100%);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(15px);
    border: 2px solid #cba16c;
    position: relative;
}

.content-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(203, 161, 108, 0.1), rgba(170, 119, 68, 0.1));
    border-radius: 20px;
    pointer-events: none;
}

.verse {
    background: linear-gradient(135deg, #f9f5ec 0%, #f0e6d3 100%);
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 1.5rem;
    border-left: 5px solid #8B4513;
    border-right: 2px solid #cba16c;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(139, 69, 19, 0.15);
    border: 2px solid rgba(203, 161, 108, 0.3);
}

.verse:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(139, 69, 19, 0.25);
    border-left-color: #654321;
    background: linear-gradient(135deg, #fefcf7 0%, #f4ede4 100%);
    border-color: rgba(203, 161, 108, 0.5);
}

.verse-number {
    font-size: 1.1rem;
    font-weight: 600;
    color: #8B4513;
    text-align: center;
    background: linear-gradient(135deg, #f4ede4, #e7d3b8);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    border: 1px solid #cba16c;
    display: inline-block;
    box-shadow: 0 2px 8px rgba(139, 69, 19, 0.2);
}

.verse-text {
    font-size: 1.3rem;
    color: #5b3e1a;
    line-height: 2;
    font-weight: 500;
    text-align: justify;
    margin-bottom: 0.5rem;
}

.verse-line {
    margin-bottom: 0.8rem;
    padding-left: 1rem;
    position: relative;
    text-align: center;
}

.verse-line:last-child:after {
    content: " ।।";
    color: #8B4513;
    font-weight: bold;
    font-size: 1.1em;
}

.ornament {
    text-align: center;
    font-size: 2rem;
    color: #aa7744;
    margin: 2rem 0;
    opacity: 0.8;
    text-shadow: 1px 1px 2px rgba(139, 69, 19, 0.3);
}

.footer {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    background: linear-gradient(135deg, #f4ede4 0%, #e2d3bc 100%);
    border-radius: 15px;
    color: #5b3e1a;
    font-style: italic;
    box-shadow: 0 10px 25px rgba(139, 69, 19, 0.15);
    border: 1px solid #cba16c;
}

.footer p:first-child {
    font-size: 1.2rem;
    font-weight: 600;
    color: #8B4513;
    margin-bottom: 1rem;
}

/* Decorative elements */
.verse::after {
    content: '';
    position: absolute;
    top: 10px;
    right: 10px;
    width: 30px;
    height: 30px;
    background: radial-gradient(circle, #cba16c, #aa7744);
    border-radius: 50%;
    opacity: 0.3;
    z-index: 0;
}

@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }

    .title {
        font-size: 2.2rem;
    }

    .content-wrapper {
        padding: 2rem 1.5rem;
    }

    .verse {
        padding: 1.5rem;
    }

    .verse-text {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    body {
        padding: 1rem 0;
    }

    .header {
        padding: 2rem 1rem;
    }

    .title {
        font-size: 1.8rem;
    }

    .verse-text {
        font-size: 1.1rem;
    }
}

/* Animation for smooth loading */
.verse {
    animation: fadeInUp 0.6s ease-out forwards;
    opacity: 0;
    transform: translateY(20px);
}

.verse:nth-child(1) {
    animation-delay: 0.1s;
}

.verse:nth-child(2) {
    animation-delay: 0.2s;
}

.verse:nth-child(3) {
    animation-delay: 0.3s;
}

.verse:nth-child(4) {
    animation-delay: 0.4s;
}

.verse:nth-child(5) {
    animation-delay: 0.5s;
}

.verse:nth-child(6) {
    animation-delay: 0.6s;
}

.verse:nth-child(7) {
    animation-delay: 0.7s;
}

.verse:nth-child(8) {
    animation-delay: 0.8s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}