:root {
    --bg-color: black;
    --text-color: white;
    --yellow-accent: #FFD700;
    --button-bg: rgba(51, 51, 51, 0.7);
    --button-hover: rgba(68, 68, 68, 0.8);
}

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

body {
    font-family: 'Arial', sans-serif;
    background-image: url('/IMG_3264.JPG');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    color: var(--text-color);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    line-height: 1.6;
    background-color: black;
}

.linktree-container {
    width: 100%;
    max-width: 500px;
    padding: 20px;
    text-align: center;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    border-radius: 15px;
}

.profile-section {
    margin-bottom: 30px;
}

.profile-image-container {
    position: relative;
    display: inline-block;
}

.profile-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
    border: 3px solid var(--yellow-accent);
}

.live-status {
    position: absolute;
    bottom: 10px;
    right: -10px;
    background-color: #ff0000;
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 0.8rem;
    font-weight: bold;
    text-transform: uppercase;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.7;
    }
    50% {
        transform: scale(1.05);
        opacity: 1;
    }
    100% {
        transform: scale(1);
        opacity: 0.7;
    }
}

.profile-section h1 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: var(--yellow-accent);
}

.profile-section p {
    color: var(--text-color);
    font-size: 1rem;
}

.stream-section {
    margin-bottom: 30px;
}

.stream-section h2 {
    margin-bottom: 20px;
    color: var(--yellow-accent);
}

.stream-container {
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 20px;
    border: 2px solid var(--yellow-accent);
}

.stream-container iframe {
    max-width: 100%;
}

.stream-schedule {
    text-align: center;
    margin-top: 20px;
    padding: 15px;
    background-color: black;
    border: 1px solid var(--yellow-accent);
    border-radius: 10px;
}

.stream-schedule h3 {
    color: var(--yellow-accent);
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.stream-schedule p {
    color: var(--text-color);
    margin-bottom: 5px;
    font-size: 0.9rem;
}

.stream-schedule .schedule-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 15px;
    margin-bottom: 20px;
}

.stream-schedule .schedule-table th,
.stream-schedule .schedule-table td {
    border: 1px solid var(--yellow-accent);
    padding: 10px;
    text-align: left;
    color: var(--text-color);
}

.stream-schedule .schedule-table th {
    background-color: black;
    color: var(--yellow-accent);
    font-weight: bold;
}

.stream-schedule .schedule-table tr:nth-child(even) {
    background-color: rgba(30, 30, 30, 1);
}

.stream-schedule .schedule-table a {
    color: var(--yellow-accent);
    text-decoration: none;
    transition: color 0.3s ease;
}

.stream-schedule .schedule-table a:hover {
    color: var(--text-color);
    text-decoration: underline;
}

.social-icons-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    width: 100%;
}

.social-icon {
    color: var(--yellow-accent);
    font-size: 2.5rem;
    text-decoration: none;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-icon:hover {
    color: var(--text-color);
}

.donate-button {
    background-color: var(--yellow-accent);
    color: black;
    text-decoration: none;
    padding: 15px 30px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    transition: background-color 0.3s ease;
    width: 100%;
    max-width: 300px;
}

.donate-button:hover {
    background-color: white;
    color: black;
}

.donate-button i {
    margin-right: 10px;
}

.about-button {
    background-color: black;
    color: var(--yellow-accent);
    border: 1px solid var(--yellow-accent);
    padding: 10px 15px;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.about-button:hover {
    background-color: var(--yellow-accent);
    color: black;
}

.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.8);
    backdrop-filter: blur(10px);
}

.modal-content {
    background-color: rgba(0, 0, 0, 0.9);
    margin: 10% auto;
    padding: 30px;
    border: 2px solid var(--yellow-accent);
    width: 90%;
    max-width: 600px;
    border-radius: 15px;
    color: var(--text-color);
    position: relative;
    backdrop-filter: blur(10px);
}

.modal-content h2 {
    color: var(--yellow-accent);
    margin-bottom: 20px;
    text-align: center;
}

.modal-content h3 {
    color: var(--yellow-accent);
    margin-top: 15px;
    margin-bottom: 10px;
}

.modal-content p {
    margin-bottom: 15px;
    line-height: 1.6;
}

.modal-content ul {
    list-style-type: none;
    padding-left: 20px;
}

.modal-content ul li {
    margin-bottom: 10px;
    position: relative;
}

.modal-content ul li::before {
    content: '•';
    color: var(--yellow-accent);
    position: absolute;
    left: -20px;
}

.close-modal {
    position: absolute;
    top: 10px;
    right: 20px;
    color: var(--yellow-accent);
    font-size: 30px;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close-modal:hover {
    color: white;
}

.pc-build-link {
    color: var(--yellow-accent);
    text-decoration: none;
    transition: color 0.3s ease;
}

.pc-build-link:hover {
    color: white;
    text-decoration: underline;
}