/* Unique design for Bet On Time */
:root {
    --primary-color: #1e88e5;
    --secondary-color: #ffc107;
    --text-color: #333;
    --background-color: #f5f5f5;
    --section-bg: #fff;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--background-color);
    margin: 0;
    padding: 0;
}

.container {
    max-width: 960px;
    margin: 0 auto;
    padding: 20px;
}

header {
    text-align: center;
    margin-bottom: 40px;
    padding: 20px;
    background-color: var(--primary-color);
    color: white;
}

.logo-container {
    margin-bottom: 20px;
}

.logo {
    position: relative;
    width: 100px;
    height: 100px;
    margin: 0 auto;
    background-color: white;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.clock-face {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: var(--secondary-color);
}

.hour-hand,
.minute-hand {
    position: absolute;
    left: 50%;
    width: 4px;
    background-color: white;
    transform-origin: bottom center;
}

.hour-hand {
    top: 20%;
    height: 30%;
    transform: translateX(-50%) rotate(45deg);
}

.minute-hand {
    top: 10%;
    height: 40%;
    transform: translateX(-50%) rotate(90deg);
}

h1 {
    font-size: 2.5rem;
    margin: 0;
}

main {
    background-color: var(--section-bg);
    padding: 40px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

section {
    margin-bottom: 40px;
}

h2 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

p {
    margin-bottom: 20px;
    text-align: justify;
}

ul {
    margin-bottom: 20px;
    padding-left: 20px;
}

li {
    margin-bottom: 10px;
}

footer {
    text-align: center;
    padding: 20px;
    background-color: var(--primary-color);
    color: white;
}

@media (max-width: 768px) {
    .container {
        padding: 10px;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    main {
        padding: 20px;
    }
} 