/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background: url("../img/background.jpg");
	background-size: cover;
	min-height: 100vh;
    padding: 20px;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    background: #222222;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    overflow: hidden;
}

/* Header styles */
header {
    padding: 40px 20px 0 20px;
    text-align: center;
}

.cursive-header {
    font-family: 'Brush Script MT', cursive;
    font-size: 3.5rem;
    color: #bc19c1;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    margin: 0;
}

/* Main content styles */
main {
    padding: 40px 30px;
    text-align: justify;
}

#description {
    font-size: 1.3rem;
    color: #EEE;
    margin-bottom: 40px;
    line-height: 1.8;
}

#description p {
	margin-bottom: 15px;
}

/* Buttons container */
.buttons-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 400px;
    margin: 0 auto;
}

/* Button styles */
.contact-btn {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 18px 25px;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    width: 100%;
	text-decoration: none;
}

.contact-btn i {
    font-size: 1.4rem;
    margin-right: 15px;
    width: 24px;
    text-align: center;
}

.contact-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.contact-btn:active {
    transform: translateY(-1px);
}

/* Individual button colors */
.soundgasm-btn {
    background: linear-gradient(135deg, #e43840, #a8347b);
    color: #EEE;
}

.email-btn {
    background: linear-gradient(135deg, #4285f4, #34a853);
    color: #EEE;
}

.discord-btn {
    background: linear-gradient(135deg, #5865f2, #7289da);
    color: #EEE;
}

.reddit-btn {
    background: linear-gradient(135deg, #ff4500, #ff8717);
    color: #EEE;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    body {
        padding: 15px;
    }
    
    .container {
        border-radius: 15px;
    }
    
    header {
        padding: 30px 15px 0 15px;
    }
    
    .cursive-header {
        font-size: 2.8rem;
    }
    
    main {
        padding: 30px 20px;
    }
    
    #description {
        font-size: 1.1rem;
        margin-bottom: 30px;
    }
    
    .contact-btn {
        padding: 16px 20px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .cursive-header {
        font-size: 2.2rem;
    }
    
    #description {
        font-size: 1rem;
    }
    
    .buttons-container {
        max-width: 100%;
    }
    
    .contact-btn {
        padding: 14px 18px;
    }
    
    .contact-btn i {
        font-size: 1.2rem;
        margin-right: 12px;
    }
}