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

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
}

/* Title (PachinkoLog) Styling */
.title-container {
    text-align: center;
    margin-top: 20px;
    padding: 20px 0;
    background-color: #222; /* Dark background for contrast */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
}

.logo {
    font-family: 'Verdana', sans-serif;
    font-size: 3.5rem;
    color: #ffffff; /* Pure white text */
    letter-spacing: 1.5px;
    font-weight: bold;
    text-transform: uppercase;
    text-shadow: none; /* Remove shadow if you don't want any gray effect */
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05); /* Adds a slight zoom effect on hover */
}

/* Navigation Menu */
header {
    background-color: #333;
    padding: 10px 0;
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 1.2rem;
}

nav ul li a:hover {
    color: #3498db;
}

/* Hero Section */
.hero {
    background: url('hero-bg.jpg') no-repeat center center/cover;
    color: white;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 30px;
}

.cta-button {
    background: #3498db;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    font-size: 1.2rem;
    border-radius: 5px;
}

/* Features, How it Works, Testimonials, etc. */
.features, .how-it-works, .testimonials, .app-images {
    padding: 50px 20px;
    text-align: center;
}

.features h2, .how-it-works h2, .testimonials h2, .app-images h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

/* Footer */
footer {
    background: #333;
    color: white;
    text-align: center;
    padding: 20px;
}

footer a {
    color: #3498db;
    text-decoration: none;
}
