body
{
	background-color: #000000 !important;
	color: #FFFFFF !important;
	font-weight: 400;
}

body > section
{
	margin-top: 0;
}

.navbar-default
{
    background-color: #000000 !important;
    border: none !important;
    border-bottom: 1px solid #333 !important;
}

.navbar-default .navbar-brand {
    color: #FFFFFF !important;
    font-weight: 700;
}

.navbar-default .navbar-nav > li > a {
    color: #FFFFFF !important;
    font-weight: 500;
}

.navbar-default .navbar-nav > li > a:hover {
    color: #1B80D9 !important;
}

.section-box
{
	background: #1a1a1a;
	border-radius: 20px;
	margin-top: 10px;
	border: 1px solid #333;
	box-shadow: none;
}

.lead {
	font-weight: bold;
	color: #FFFFFF;
}

/* Modern Button Styles */
.modern-btn {
    background-color: #1B80D9 !important;
    border: none;
    border-radius: 12px;
    padding: 15px 30px;
    color: #FFFFFF !important;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    margin-top: 20px;
}

.modern-btn:hover {
    background-color: #1565C0 !important;
    transform: translateY(-2px);
}

.modern-btn:disabled {
    background-color: #666 !important;
    cursor: not-allowed;
    transform: none;
}

/* Modern container styles */
.modern-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.main-content {
    display: flex;
    gap: 40px;
    margin: 40px 0;
    align-items: center;
}

.left-content {
    flex: 1;
    color: #FFFFFF;
}

.left-content h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #FFFFFF;
}

.left-content p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    line-height: 1.6;
    color: #FFFFFF;
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.features-list li {
    padding: 8px 0;
    color: #FFFFFF;
    font-weight: 500;
}

.features-list li:before {
    content: "✓ ";
    color: #1B80D9;
    font-weight: bold;
    margin-right: 10px;
}

.timer-box {
    background: #1a1a1a;
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    border: 1px solid #333;
    min-width: 350px;
}

.countdown-circle {
    width: 120px;
    height: 120px;
    border: 4px solid #1B80D9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    color: #1B80D9;
    margin: 0 auto 30px;
    background: #000;
}

@media (max-width: 768px) {
    .main-content {
        flex-direction: column;
        gap: 30px;
    }
    
    .left-content h1 {
        font-size: 2rem;
    }
    
    .timer-box {
        min-width: auto;
        width: 100%;
    }
}
