:root {
    --primary-color: #00b8d4;
    --primary-hover: #1cddf5;
    --bg-color: #0d0d0d;
    --surface-color: rgba(28, 28, 30, 0.65);
    --surface-border: rgba(80, 80, 80, 0.7);
    --text-primary: #f0f0f0;
    --text-secondary: #b0b0b0;
    --font-main: 'Inter', sans-serif;
}

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

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

body {
    font-family: var(--font-main);
    color: var(--text-primary);
    background-color: var(--bg-color);
    background-image: 
        url('https://dazigus.com/images/background.jpg');
    background-size: cover;
    background-position: center center;
    background-attachment: fixed;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    min-height: 100vh;
    padding: 30px;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.65);
    z-index: -1;
}

.container {
    max-width: 1200px;
    width: 100%;
    text-align: center;
}

header {
    margin-bottom: 60px;
    animation: fadeInUp 0.8s ease-out forwards;
}

.artist-name {
    font-size: 3.8rem;
    font-weight: 900;
    letter-spacing: -2.5px;
    background: linear-gradient(45deg, #e0e0e0, #ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 25px rgba(255, 255, 255, 0.1);
}

.tagline {
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--text-secondary);
    margin-top: 5px;
}

.main-content-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr 1fr;
    gap: 35px;
    align-items: flex-start;
}

.main-links-column { animation: fadeInUp 0.8s ease-out 0.2s forwards; opacity: 0; }
.upcoming-projects-column { animation: fadeInUp 0.8s ease-out 0.3s forwards; opacity: 0; }
.principles-column { animation: fadeInUp 0.8s ease-out 0.4s forwards; opacity: 0; }

.links-section h2,
.upcoming-projects-column h2,
.psa-box h3 {
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 25px;
    text-align: center;
}

.presave-section .main-presave-art {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 12px;
    margin: 0 auto 30px auto;
    display: block;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.6);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.presave-section .main-presave-art:hover {
    transform: scale(1.05);
    box-shadow: 0 0 40px rgba(0, 184, 212, 0.4);
}

.link-button {
    background-color: var(--surface-color);
    border: 1px solid var(--surface-border);
    color: var(--text-primary);
    text-decoration: none;
    padding: 20px;
    margin: 0 auto 15px auto;
    border-radius: 10px;
    font-weight: 700;
    max-width: 400px;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.link-button i {
    font-size: 1.3rem;
    margin-right: 15px;
    width: 22px;
    color: var(--text-secondary);
    transition: color 0.2s ease;
}

.link-button:hover {
    transform: translateY(-3px);
    border-color: var(--primary-color);
    background-color: rgba(0, 184, 212, 0.1);
    box-shadow: 0 4px 15px rgba(0, 184, 212, 0.1);
}

.link-button:hover i {
    color: var(--primary-color);
}

.presave-section .link-button {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--bg-color);
    font-size: 1.1rem;
    box-shadow: 0 0 20px rgba(0, 184, 212, 0.4);
}
.presave-section .link-button i { color: var(--bg-color); }

.presave-section .link-button:hover {
    background-color: var(--primary-hover);
    border-color: var(--primary-hover);
    box-shadow: 0 0 30px rgba(28, 221, 245, 0.6);
}

.upcoming-projects-column { text-align: left; }

.project-item {
    background-color: var(--surface-color);
    border: 1px solid var(--surface-border);
    border-radius: 12px;
    padding: 15px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: all 0.2s ease;
}

.project-item-link:hover .project-item {
    transform: translateY(-3px);
    border-color: rgba(186, 186, 186, 0.5);
}

.project-item img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 8px;
    flex-shrink: 0;
}

.project-details { flex-grow: 1; }

.project-title {
    font-weight: 700;
    font-size: 1.05rem;
    margin: 0 0 5px 0;
    color: var(--text-primary);
}

.project-info {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin: 0;
}

.presave-pill {
    font-size: 0.8rem;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 20px;
    text-decoration: none;
    flex-shrink: 0;
    text-align: center;
    transition: all 0.2s ease;
}

.presave-pill:not(.disabled) {
    background-color: var(--primary-color);
    color: var(--bg-color);
}

.project-item-link:hover .presave-pill:not(.disabled) {
    background-color: var(--primary-hover);
}

.presave-pill.disabled {
    background-color: rgba(80, 80, 80, 0.5);
    color: var(--text-secondary);
    cursor: not-allowed;
}

.psa-box {
    background-color: var(--surface-color);
    border: 1px solid var(--surface-border);
    border-radius: 12px;
    padding: 30px;
    text-align: left;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.psa-box h3 {
    color: var(--primary-color);
    font-size: 1.1rem;
    text-transform: none;
    letter-spacing: 0;
}

.psa-box p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 25px;
}

.psa-box ul { list-style-type: none; }

.psa-box li {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 18px;
    padding-left: 25px;
    position: relative;
}

.psa-box li strong { color: var(--text-primary); }

.psa-box li::before {
    content: '';
    position: absolute;
    left: 5px;
    top: 7px;
    width: 4px;
    height: 12px;
    background-color: var(--primary-color);
    border-radius: 2px;
    opacity: 0.7;
}

footer {
    animation: fadeInUp 0.8s ease-out 0.5s forwards;
    opacity: 0;
    margin-top: 50px;
    padding-bottom: 20px;
}

.contact-link {
    color: var(--text-secondary);
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: color 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 1px solid var(--surface-border);
    padding: 10px 20px;
    border-radius: 30px;
}

.contact-link:hover {
    color: var(--primary-color);
    border-color: var(--primary-color);
}

@media (max-width: 1024px) {
    .main-content-grid {
        grid-template-columns: 1fr; 
        max-width: 600px;
        margin: 0 auto;
        gap: 50px;
    }
    .upcoming-projects-column { order: 2; }
    .main-links-column { order: 1; }
    .principles-column { order: 3; }
}

@media (max-width: 600px) {
    body { padding: 20px; }
    
    .artist-name { font-size: 2.8rem; }
    
    .tagline { font-size: 1.1rem; }
    
    .presave-section .main-presave-art {
        width: 180px;
        height: 180px;
    }

    .link-button { padding: 18px; }
}

.project-item-link {
    text-decoration: none;
    display: block;
}

.global-nav {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 15px 30px;
    display: flex;
    justify-content: center;
    gap: 25px;
    background-color: rgba(13, 13, 13, 0.5);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border-bottom: 1px solid var(--surface-border);
}

.global-nav a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    transition: color 0.2s ease;
}

.global-nav a:hover,
.global-nav a.active {
    color: var(--text-primary);
}

body {
    padding-top: 80px;
}