* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: #333;
    background: #FFFFFF;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(45deg, #FF69B4, #FFC1CC);
    color: white;
    box-shadow: 0 4px 15px rgba(255, 105, 180, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 105, 180, 0.4);
}

.btn-secondary {
    background: white;
    color: #FF69B4;
    border: 2px solid #FF69B4;
}

.btn-secondary:hover {
    background: #FF69B4;
    color: white;
    transform: translateY(-2px);
}

/* Blue theme buttons for chatters page */
.chatters-theme .btn-primary {
    background: linear-gradient(45deg, #1976D2, #2196F3);
    color: white;
    box-shadow: 0 4px 15px rgba(25, 118, 210, 0.3);
}

.chatters-theme .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(25, 118, 210, 0.4);
}

.chatters-theme .btn-secondary {
    background: white;
    color: #1976D2;
    border: 2px solid #1976D2;
}

.chatters-theme .btn-secondary:hover {
    background: #1976D2;
    color: white;
    transform: translateY(-2px);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #333;
}

@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
    }
}