/* Base Styles */
html, body { 
    height: 100%; 
    margin: 0;
    padding: 0;
    font-family: 'Open Sans', sans-serif;
    color: #fff;
}

/* Main Layout */
.main-area-wrapper {
    min-height: 100vh;
    background-size: cover;
    background-position: center;
    padding: 20px;
}

.main-area {
    height: calc(100vh - 40px);  /* Account for wrapper padding */
    position: relative;
    z-index: 1;
    text-align: center;
    box-shadow: 2px 5px 30px rgba(0,0,0,.3);
    margin: 0 20px;
}

.main-area:after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: -1;
    opacity: 0.1;
    background: #333;
}

/* Center Content Layout */
.display-table {
    display: table;
    height: 100%;
    width: 100%;
}

.display-table-cell {
    display: table-cell;
    vertical-align: middle;
}

/* Typography */
.title {
    font-size: 3.5em;
    margin-bottom: 20px;
    font-family: 'Poppins', sans-serif;
}

.desc {
    font-size: 1.2em;
    margin-bottom: 30px;
}

/* Spotify Button */
.notify-btn {
    display: inline-block;
    padding: 13px 35px;
    border-radius: 50px;
    border: 2px solid #1DB954;
    background: #1DB954;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s;
    margin: 20px 0;
}

.notify-btn:hover {
    background: transparent;
    color: #fff;
}

/* Social Media */
.social-btn {
    position: absolute;
    bottom: 30px;
    left: 0;
    right: 0;
    margin: 0;
    padding: 0;
    list-style: none;
}

.social-btn li {
    display: inline-block;
    margin: 0 5px;
}

.social-btn .list-heading {
    display: block;
    margin-bottom: 15px;
    font-size: 0.9em;
}

.social-btn i {
    display: inline-block;
    height: 35px;
    width: 35px;
    line-height: 35px;
    border-radius: 50%;
    font-size: 1.04em;
    transition: all 0.3s;
    color: #fff;
}

/* Social Media Colors */
.ion-social-facebook { background: #2A61D6; }
.ion-social-twitter { background: #3AA4F8; }
.ion-social-youtube { background: #F43846; }
.ion-social-instagram-outline { background: #8F614A; }

.social-btn i:hover {
    background: #fff !important;
    color: #333;
}
