     * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            background: #0a0a0a;
            background-image: 
                linear-gradient(rgba(20, 20, 30, 0.7), rgba(0, 0, 0, 0.9)),
                url('https://www.transparenttextures.com/patterns/black-paper.png');
            font-family: 'Courier New', 'Times New Roman', 'Georgia', monospace;
            color: #d4c5a9;
            min-height: 100vh;
            line-height: 1.6;
            position: relative;
        }


        body::before {
            content: '';
            position: fixed;
            top: 20px;
            left: 20px;
            right: 20px;
            bottom: 20px;
            border: 2px solid #4a1a2e;
            pointer-events: none;
            z-index: 999;
            box-shadow: 0 0 20px rgba(100, 0, 50, 0.3);
        }

        header {
            text-align: center;
            padding: 2rem;
            border-bottom: 3px solid #4a1a2e;
            margin-bottom: 2rem;
            background: linear-gradient(180deg, #1a0a12 0%, #0a0a0a 100%);
            position: relative;
        }

        header::after {
            content: '✝';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            background: #0a0a0a;
            color: #6b2a4a;
            font-size: 1.5rem;
            padding: 0 1rem;
        }

        h1 {
            font-size: 3rem;
            letter-spacing: 5px;
            text-transform: uppercase;
            color: #8b1a3a;
            text-shadow: 
                2px 2px 0px #2a0a1a,
                4px 4px 0px rgba(139, 26, 58, 0.3);
            font-family: 'Georgia', serif;
            word-spacing: 10px;
        }
        
         .link{ color: #ffffff;
         }
        nav {
            margin-top: 1.5rem;
            display: flex;
            justify-content: center;
            gap: 2rem;
            flex-wrap: wrap;
            text-decoration:none;
           color: #ffffff;
        }
        a{
            color:white;
            text-decoration: none;
            font-size: 1.1rem;
            text-transform: uppercase;
            letter-spacing: 2px;
            padding: 0.5rem 1rem;
            transition: all 0.3s ease;
            position: relative;
            background: rgba(20, 10, 15, 0.6);
        }
        .links-container {
         display: flex;
         gap: 3rem;
        }

        nav a::before {
            content: '[';
            position: absolute;
            left: -5px;
            opacity: 0;
            transition: all 0.3s ease;
        }

        nav a::after {
            content: ']';
            position: absolute;
            right: -5px;
            opacity: 0;
            transition: all 0.3s ease;
        }

        nav a:hover {
            color: #b61148;
            border-color: #fb0c0c;
            text-shadow: 0 0 5px rgba(139, 26, 58, 0.5);
            background: rgba(30, 15, 20, 0.8);
        }

        nav a:hover::before,
        nav a:hover::after {
            opacity: 1;
        }

        main {
            max-width: 900px;
            margin: 0 auto;
            padding: 2rem;
            background: rgba(10, 5, 8, 0.7);
            border: 1px solid #2a0a1a;
            box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
            position: relative;
            z-index: 1;
        }

        h2 {
            font-size: 2rem;
            color: #6b2a4a;
            border-left: 4px solid #8b1a3a;
            padding-left: 1rem;
            margin-bottom: 1rem;
            font-family: 'Georgia', serif;
        }

        p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
        }

        img {
            max-width: 100%;
            height: auto;
            border: 3px solid #4a1a2e;
            filter: grayscale(50%) sepia(20%);
            transition: all 0.3s ease;
            box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.5);
        }

        img:hover {
            filter: grayscale(20%) sepia(10%);
            border-color: #8b1a3a;
            box-shadow: 0 0 20px rgba(139, 26, 58, 0.3);
        }

        #greetings {
            margin-top: 2rem;
            padding: 1rem;
            background: linear-gradient(90deg, #1a0a12, transparent);
            border-left: 3px solid #8b1a3a;
            font-style: italic;
            font-size: 1.2rem;
            color: #c4a882;
            text-shadow: 1px 1px 2px #000;
        }

        /* Footer styling */
        footer {
            text-align: center;
            padding: 2rem;
            margin-top: 2rem;
            border-top: 1px solid #2a0a1a;
            font-size: 0.8rem;
            color: #5a3a4a;
            letter-spacing: 1px;
        }

        /* Scrollbar styling */
        ::-webkit-scrollbar {
            width: 8px;
            background: #0a0a0a;
        }

        ::-webkit-scrollbar-track {
            background: #1a0a12;
        }

        ::-webkit-scrollbar-thumb {
            background: #4a1a2e;
            border-radius: 5px;
        }

        ::-webkit-scrollbar-thumb:hover {
            background: #8b1a3a;
        }

        ::selection {
            background: #4a1a2e;
            color: #d4c5a9;
        }

        .corner-decoration {
            position: fixed;
            width: 50px;
            height: 50px;
            pointer-events: none;
            z-index: 1000;
        }

        /* Responsive */
        @media (max-width: 768px) {
            h1 {
                font-size: 2rem;
            }
            
            nav {
                gap: 1rem;
            }
            
            nav a {
                font-size: 0.8rem;
                padding: 0.3rem 0.8rem;
            }
            
            main {
                padding: 1rem;
                margin: 0 1rem;
            }
            
            body::before {
                top: 10px;
                left: 10px;
                right: 10px;
                bottom: 10px;
            }
        }
        .welcome_img{
    width: 400px;       
    display: block;
    margin: 0 auto;    
}
.playlist {
    width: 250px;
    margin: 20px auto;
    border-radius: 10px;
}

main {
    margin-top: 150px;
    text-align: center;
}

.intro-text {
    font-size: 16px;
    max-width: 700px;
    margin: 0 auto;
}