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

body {
    font-family: 'Arial', sans-serif;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    color: #333;
}

header {
    padding: 20px 40px;
}

.site-title {
    font-size: 48px;
    font-weight: bold;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    letter-spacing: 2px;
}

main {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: calc(100vh - 120px);
    padding: 20px;
}

.content-container {
    background: rgba(255, 255, 255, 0.95);
    padding: 60px 80px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    text-align: center;
    max-width: 600px;
    width: 100%;
}

.subscribe-text {
    font-size: 32px;
    color: #333;
    margin-bottom: 30px;
    font-weight: 600;
}

.follow-button {
    display: inline-block;
    padding: 15px 50px;
    background-color: #ff0000;
    color: white;
    text-decoration: none;
    font-size: 20px;
    font-weight: bold;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 0, 0, 0.3);
    margin-bottom: 40px;
}

.follow-button:hover {
    background-color: #cc0000;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 0, 0, 0.4);
}

.coming-soon {
    font-size: 18px;
    color: #666;
    line-height: 1.6;
    font-style: italic;
}

@media (max-width: 768px) {
    .site-title {
        font-size: 36px;
    }
    
    .content-container {
        padding: 40px 30px;
    }
    
    .subscribe-text {
        font-size: 24px;
    }
    
    .follow-button {
        padding: 12px 40px;
        font-size: 18px;
    }
    
    .coming-soon {
        font-size: 16px;
    }
}
