@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600;700&family=Cormorant+Garamond:ital,wght@0,400;0,600;1,400&display=swap');

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

body {
    font-family: 'Cormorant Garamond', serif;
    line-height: 1.6;
    color: #e8f4f8;
    background: 
        radial-gradient(circle at 20% 80%, rgba(0, 101, 191, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(0, 101, 191, 0.15) 0%, transparent 50%),
        linear-gradient(135deg, #001122 0%, #002244 25%, #003366 50%, #002244 75%, #001122 100%),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="ocean" patternUnits="userSpaceOnUse" width="20" height="20"><rect width="20" height="20" fill="%23000" fill-opacity="0.02"/><path d="M0 10h20M10 0v20" stroke="%230065BF" stroke-width="0.5" stroke-opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23ocean)"/></svg>');
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><g fill="%230065BF" fill-opacity="0.04"><circle cx="20" cy="20" r="2"/><circle cx="80" cy="20" r="1"/><circle cx="50" cy="50" r="1.5"/><circle cx="20" cy="80" r="1"/><circle cx="80" cy="80" r="2"/></g></svg>');
    animation: starField 20s linear infinite;
    pointer-events: none;
    z-index: -1;
}

@keyframes starField {
    0% { transform: translateY(0); }
    100% { transform: translateY(-100px); }
}

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

.hero {
    text-align: center;
    padding: 60px 0;
    background: 
        linear-gradient(135deg, rgba(0, 101, 191, 0.1) 0%, rgba(0, 101, 191, 0.05) 100%),
        rgba(0, 0, 0, 0.8);
    border-radius: 20px;
    margin-bottom: 30px;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(0, 101, 191, 0.3),
        0 0 0 1px rgba(0, 101, 191, 0.2);
    border: 2px solid rgba(0, 101, 191, 0.2);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 200"><defs><pattern id="waves" patternUnits="userSpaceOnUse" width="40" height="40"><rect width="40" height="40" fill="none"/><path d="M20 0v40M0 20h40" stroke="%230065BF" stroke-width="0.5" stroke-opacity="0.1"/></pattern></defs><rect width="400" height="200" fill="url(%23waves)"/></svg>');
    opacity: 0.3;
    z-index: 1;
}

.hero > * {
    position: relative;
    z-index: 2;
}

.profile-image {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    margin-bottom: 20px;
    border: 4px solid #0065BF;
    object-fit: cover;
    box-shadow: 
        0 0 30px rgba(0, 101, 191, 0.4),
        inset 0 0 20px rgba(0, 0, 0, 0.2);
    filter: contrast(1.1) brightness(1.1);
    transition: all 0.3s ease;
}

.profile-image:hover {
    transform: scale(1.05);
    box-shadow: 
        0 0 40px rgba(0, 101, 191, 0.6),
        inset 0 0 20px rgba(0, 0, 0, 0.2);
}

.name {
    font-family: 'Cinzel', serif;
    font-size: 3rem;
    font-weight: 700;
    color: #0065BF;
    margin-bottom: 15px;
    text-shadow: 
        2px 2px 4px rgba(0, 0, 0, 0.8),
        0 0 20px rgba(0, 101, 191, 0.3);
    letter-spacing: 2px;
    animation: titleGlow 3s ease-in-out infinite alternate;
}

@keyframes titleGlow {
    0% { text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8), 0 0 20px rgba(0, 101, 191, 0.3); }
    100% { text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8), 0 0 30px rgba(0, 101, 191, 0.5), 0 0 40px rgba(0, 101, 191, 0.2); }
}

.tagline {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    color: #4d9fff;
    font-weight: 600;
    font-style: italic;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.6);
    letter-spacing: 1px;
}

section {
    background: 
        linear-gradient(135deg, rgba(0, 101, 191, 0.05) 0%, rgba(0, 0, 0, 0.8) 100%),
        rgba(20, 30, 40, 0.9);
    margin-bottom: 30px;
    padding: 35px;
    border-radius: 15px;
    box-shadow: 
        0 10px 40px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(0, 101, 191, 0.2),
        0 0 0 1px rgba(0, 101, 191, 0.1);
    border: 1px solid rgba(0, 101, 191, 0.15);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 60 60"><rect width="60" height="60" fill="none"/><circle cx="30" cy="30" r="1" fill="%236bb6ff" fill-opacity="0.1"/></svg>');
    z-index: 1;
}

section > * {
    position: relative;
    z-index: 2;
}

h2 {
    font-family: 'Cinzel', serif;
    font-size: 2rem;
    margin-bottom: 25px;
    color: #0065BF;
    border-bottom: 2px solid #87ceeb;
    padding-bottom: 12px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
    letter-spacing: 1px;
    position: relative;
}

h2::after {
    content: '✨';
    position: absolute;
    right: 0;
    bottom: -10px;
    color: #0065BF;
    font-size: 1.2rem;
}

.links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.link-card {
    display: flex;
    align-items: center;
    padding: 20px;
    border-radius: 12px;
    text-decoration: none;
    color: white;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.link-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.link-card i {
    font-size: 1.5rem;
    margin-right: 15px;
}

.link-card span {
    font-weight: 600;
    font-size: 1.1rem;
}

.link-card small {
    margin-left: auto;
    opacity: 0.8;
}

.twitter {
    background: linear-gradient(135deg, #1da1f2, #0d8bd9);
}

.instagram {
    background: linear-gradient(135deg, #e1306c, #c13584, #833ab4);
}

.note {
    background: linear-gradient(135deg, #41c9b4, #2eb398);
}

.platforms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.platform-card {
    background: 
        linear-gradient(135deg, rgba(0, 101, 191, 0.1) 0%, rgba(0, 0, 0, 0.8) 100%),
        rgba(20, 30, 50, 0.9);
    padding: 25px;
    border-radius: 15px;
    border-left: 5px solid #0065BF;
    border: 1px solid rgba(0, 101, 191, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.platform-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 
        0 15px 40px rgba(0, 0, 0, 0.4),
        0 0 20px rgba(0, 101, 191, 0.2);
    border-color: rgba(0, 101, 191, 0.4);
}


.platform-card i {
    font-size: 2rem;
    color: #667eea;
    margin-bottom: 15px;
}

.platform-card h3 {
    color: #0065BF;
    margin-bottom: 10px;
    font-size: 1.3rem;
    font-family: 'Cinzel', serif;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.6);
}

.platform-card p {
    color: #4d9fff;
    margin-bottom: 15px;
    opacity: 0.9;
}

.platform-link {
    display: inline-block;
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 2px solid transparent;
    transition: border-color 0.3s ease;
}

.platform-link:hover {
    border-bottom-color: #667eea;
}

.youtube i {
    color: #ff0000;
}

.suno i {
    color: #ff6b6b;
}

.standfm i {
    color: #00d4aa;
}

.blog i {
    color: #6c5ce7;
}

.about {
    text-align: center;
}

.about p {
    font-size: 1.2rem;
    color: #e8f4f8;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.6);
    font-style: italic;
}

.parallax-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 120%;
    height: 120%;
    background: 
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 400"><defs><radialGradient id="ocean" cx="50%" cy="50%" r="50%"><stop offset="0%" style="stop-color:%236bb6ff;stop-opacity:0.1"/><stop offset="100%" style="stop-color:%23000;stop-opacity:0.8"/></radialGradient></defs><rect width="400" height="400" fill="url(%23ocean)"/><g fill="%236bb6ff" fill-opacity="0.05"><path d="M50,100 Q75,80 100,100 Q125,120 150,100" stroke="%236bb6ff" stroke-width="2" fill="none" opacity="0.3"/><path d="M200,150 Q225,130 250,150 Q275,170 300,150" stroke="%236bb6ff" stroke-width="2" fill="none" opacity="0.3"/><circle cx="100" cy="200" r="15" fill="%236bb6ff" fill-opacity="0.1"/><circle cx="300" cy="250" r="20" fill="%236bb6ff" fill-opacity="0.1"/></g></svg>') no-repeat center center;
    background-size: cover;
    animation: parallaxMove 30s ease-in-out infinite;
    z-index: -2;
    opacity: 0.3;
}

@keyframes parallaxMove {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(-10px, -20px) scale(1.02); }
    50% { transform: translate(10px, -10px) scale(1.01); }
    75% { transform: translate(-5px, 15px) scale(1.02); }
}

.ancient-ornament {
    position: absolute;
    font-size: 2rem;
    color: #0065BF;
    opacity: 0.6;
    animation: ornamentFloat 4s ease-in-out infinite;
    text-shadow: 0 0 10px rgba(0, 101, 191, 0.5);
}

.top-left {
    top: 20px;
    left: 20px;
    animation-delay: 0s;
}

.top-right {
    top: 20px;
    right: 20px;
    animation-delay: 1s;
}

.bottom-left {
    bottom: 20px;
    left: 20px;
    animation-delay: 2s;
}

.bottom-right {
    bottom: 20px;
    right: 20px;
    animation-delay: 3s;
}

@keyframes ornamentFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.6; }
    50% { transform: translateY(-10px) rotate(5deg); opacity: 0.8; }
}

footer {
    text-align: center;
    padding: 20px;
    color: rgba(0, 101, 191, 0.8);
    font-size: 0.9rem;
    font-family: 'Cormorant Garamond', serif;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
    border-top: 1px solid rgba(0, 101, 191, 0.3);
    margin-top: 40px;
}

@media (max-width: 768px) {
    .container {
        padding: 10px;
    }
    
    .name {
        font-size: 2rem;
    }
    
    .links-grid {
        grid-template-columns: 1fr;
    }
    
    .platforms-grid {
        grid-template-columns: 1fr;
    }
    
    section {
        padding: 20px;
    }
    
    .link-card {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .link-card small {
        margin-left: 0;
    }
}